Make work

This commit is contained in:
2025-10-17 12:36:41 +03:00
parent 404a2ac233
commit b74ea12aea
9 changed files with 2222 additions and 10 deletions

View File

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