22 lines
384 B
Nix
Executable File
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;
|
|
};
|
|
};
|
|
}
|