Files
open-webui-flake/flake.nix
2025-10-17 12:36:41 +03:00

22 lines
384 B
Nix
Executable File

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