building installer iso #32

Merged
Richie merged 3 commits from feature/building-installer-iso into main 2026-07-02 16:07:46 -04:00
Showing only changes of commit 682960b4c9 - Show all commits
+11 -30
View File
@@ -95,37 +95,18 @@
} }
); );
nixosConfigurations = { nixosConfigurations =
bob = lib.nixosSystem { let
modules = [ hosts = builtins.attrNames (
./systems/bob lib.filterAttrs (_: type: type == "directory") (builtins.readDir ./systems)
]; );
mkHost =
name:
lib.nixosSystem {
modules = [ ./systems/${name} ];
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
}; };
brain = lib.nixosSystem { in
modules = [ lib.genAttrs hosts mkHost;
./systems/brain
];
specialArgs = { inherit inputs outputs; };
};
jeeves = lib.nixosSystem {
modules = [
./systems/jeeves
];
specialArgs = { inherit inputs outputs; };
};
rhapsody-in-green = lib.nixosSystem {
modules = [
./systems/rhapsody-in-green
];
specialArgs = { inherit inputs outputs; };
};
iso = lib.nixosSystem {
modules = [
./systems/iso
];
specialArgs = { inherit inputs outputs; };
};
};
}; };
} }