aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-14 13:55:52 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-14 14:12:12 -0500
commitd71356eef83e4df59416cd10109cb5688e657c16 (patch)
tree06d8eb139f131261a30f23a4250e114dcd469fdb /flake.nix
parent64d6e9664bbcbe4125df56f8f228f92222c13188 (diff)
migrate gtk config to hjem and drop home-manager flake input (yay!)
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"];
};
};
}