More stuff

This commit is contained in:
2026-03-15 17:04:38 +00:00
parent 51ab62ab2b
commit 95f1f15a68
9 changed files with 73 additions and 9 deletions

View File

@@ -52,8 +52,14 @@
} @ inputs: let
lib = nixpkgs.lib;
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
pkgs-unstable = nixpkgs-unstable.legacyPackages.${system};
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
mkHost = hostname: nixpkgs.lib.nixosSystem {
modules = [