aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix17
1 files changed, 14 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 5a5c2b7..2075adf 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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"];
+ };
+ };
}