add den pattern

This commit is contained in:
Armel van Ravels
2026-08-14 15:08:14 +02:00
parent 6c1074e3fd
commit 00a8168ef5
92 changed files with 738 additions and 506 deletions

View File

@@ -13,6 +13,21 @@ let
config.allowUnfree = true;
};
moduleNames = [
"ai"
"core"
"desktop"
"development"
"features"
"gaming"
"hardware"
"multimedia"
"networking"
"security"
"system"
"work"
];
mkHost =
name:
nixpkgs.lib.nixosSystem {
@@ -27,7 +42,7 @@ let
nix-flatpak.nixosModules.nix-flatpak
home-manager.nixosModules.home-manager
./hosts/${name}
];
] ++ (map (mod: ./modules/${mod}) moduleNames);
};
in