summaryrefslogtreecommitdiff
path: root/systems/common.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-01-07 18:13:53 -0500
committerseth <[email protected]>2024-01-07 18:13:59 -0500
commit2b354838edecc32c59d3c7ddf35e6cfe06cfe268 (patch)
treeee0b5420f0b55912de13dafb65da931bdf713798 /systems/common.nix
parenta22a2b43128c008a89c4db79f3afa50699f3324f (diff)
tree-wide: localize imports
i shouldn't be editing systems/default.nix to remove a module only for glados
Diffstat (limited to 'systems/common.nix')
-rw-r--r--systems/common.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/systems/common.nix b/systems/common.nix
index 3960495..f0b0384 100644
--- a/systems/common.nix
+++ b/systems/common.nix
@@ -14,7 +14,7 @@
};
};
in {
- nixos =
+ personal =
(with inputs; [
agenix.nixosModules.default
catppuccin.nixosModules.catppuccin
@@ -34,8 +34,6 @@ in {
sethPassword.file = secretsDir + "/sethPassword.age";
};
};
-
- system.stateVersion = "23.11";
})
];
@@ -45,10 +43,6 @@ in {
self.darwinModules.desktop
hmSetup
-
- {
- system.stateVersion = 4;
- }
];
server = [
@@ -65,7 +59,6 @@ in {
};
nix.registry.n.flake = inputs.nixpkgs-stable;
- system.stateVersion = "23.05";
}
];
}