17 lines
318 B
Nix
Executable File
17 lines
318 B
Nix
Executable File
{
|
|
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;
|
|
};
|
|
};
|
|
}
|