2024-09-15 20:35:46 -04:00
|
|
|
{ self, nixpkgs, home-manager, raspberry-pi-nix, sops-nix, ... }:
|
2023-07-27 15:22:16 -04:00
|
|
|
let
|
|
|
|
mkSystem = hostName: modules:
|
|
|
|
let
|
|
|
|
hostSystem = self.hosts.${hostName}.system;
|
|
|
|
in
|
|
|
|
nixpkgs.lib.nixosSystem {
|
|
|
|
system = hostSystem;
|
|
|
|
modules = [
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
(_: {
|
|
|
|
networking.hostName = hostName;
|
2023-07-27 15:51:15 -04:00
|
|
|
nixpkgs.overlays = [ self.overlays.default ];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
2023-07-27 15:22:16 -04:00
|
|
|
})
|
|
|
|
] ++ modules;
|
2024-09-15 20:35:46 -04:00
|
|
|
specialArgs = { inherit raspberry-pi-nix sops-nix; };
|
2023-07-27 15:22:16 -04:00
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
# Aristotle
|
2024-09-02 10:47:02 -04:00
|
|
|
agent = mkSystem "agent" [ ./hosts/aristotle/configuration.nix ];
|
|
|
|
form = mkSystem "form" [ ./hosts/aristotle/configuration.nix ];
|
|
|
|
matter = mkSystem "matter" [ ./hosts/aristotle/configuration.nix ];
|
|
|
|
purpose = mkSystem "purpose" [ ./hosts/aristotle/configuration.nix ];
|
2023-07-27 15:22:16 -04:00
|
|
|
|
2024-09-02 10:47:02 -04:00
|
|
|
plato = mkSystem "plato" [ ./hosts/plato/configuration.nix ];
|
|
|
|
socrates = mkSystem "socrates" [ ./hosts/socrates/configuration.nix ];
|
2023-07-27 15:22:16 -04:00
|
|
|
}
|