aboutsummaryrefslogtreecommitdiff
path: root/modules/nix/system/default.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 17:03:20 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 17:14:14 +0000
commit82ec91b4d2c253c6ccb783f960a2788f230d6ad1 (patch)
tree94dad925340787e5a045d9bb0d094f71dedce036 /modules/nix/system/default.nix
parentcfe198ee85f3c5ee41f4221f49b73dd492b42fdc (diff)
start avoiding lib.enum; start using hjem generators
Diffstat (limited to 'modules/nix/system/default.nix')
-rw-r--r--modules/nix/system/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/nix/system/default.nix b/modules/nix/system/default.nix
index c35d3b3..990e562 100644
--- a/modules/nix/system/default.nix
+++ b/modules/nix/system/default.nix
@@ -15,9 +15,14 @@
# Disable channels
nix.channel.enable = false;
- programs.command-not-found.enable = false; # breaks unless you use channels
nixpkgs = {
config.allowUnfree = true;
};
+
+ programs.nh = {
+ enable = true;
+ flake = "/home/collin/nixos";
+ clean.enable = true;
+ };
}