Files
open-webui-flake/flake.nix
2025-10-17 11:23:05 +03:00

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;
};
};
}