diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -25,9 +25,20 @@ }; }; - outputs = inputs: - (import ./lib/nix-furnace).mkFlake { + outputs = inputs: let + mkSystem = import ./lib/nix-furnace/mkSystem.nix; + in { + nixosConfigurations."mercury" = mkSystem { inherit inputs; - namespace = "collinux"; + hostname = "mercury"; + username = "collin"; + module_types = ["hjem" "nixos"]; }; + nixosConfigurations."jupiter" = mkSystem { + inherit inputs; + hostname = "jupiter"; + username = "collin"; + module_types = ["hjem" "home" "nixos"]; + }; + }; } |
