aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 5 insertions, 9 deletions
diff --git a/flake.nix b/flake.nix
index 05970ce..747c47a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -14,11 +14,6 @@
inputs.nixpkgs.follows = "nixpkgs";
};
- home-manager = {
- url = "github:nix-community/home-manager";
- inputs.nixpkgs.follows = "nixpkgs";
- };
-
# for server that doesn't have nixos
system-manager = {
url = "github:numtide/system-manager";
@@ -44,12 +39,13 @@
inherit inputs;
hostname = "jupiter";
username = "collin";
- module_types = ["hjem" "home" "nixos"];
+ module_types = ["hjem" "nixos"];
};
-
- systemConfigs."ganymede" = mkSystemManagerSystem {
+ nixosConfigurations."ganymede" = mkNixosSystem {
inherit inputs;
- hostanme = "ganymede";
+ hostname = "ganymede";
+ username = "collin";
+ module_types = ["nixos" "hjem"];
};
};
}