Init commit

This commit is contained in:
2025-10-17 11:23:05 +03:00
parent 1e8707500a
commit 404a2ac233
4 changed files with 70 additions and 0 deletions

16
flake.nix Executable file
View File

@@ -0,0 +1,16 @@
{
description = "open webui flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs = {...} @ inputs: let
system = "x86_64-linux";
pkgs = inputs.nixpkgs.legacyPackages.${system};
in {
devShells.${system} = import ./shell.nix {
inherit pkgs;
};
};
}