diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-07-08 17:03:20 +0000 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-07-08 17:14:14 +0000 |
| commit | 82ec91b4d2c253c6ccb783f960a2788f230d6ad1 (patch) | |
| tree | 94dad925340787e5a045d9bb0d094f71dedce036 /modules/nix/system | |
| parent | cfe198ee85f3c5ee41f4221f49b73dd492b42fdc (diff) | |
start avoiding lib.enum; start using hjem generators
Diffstat (limited to 'modules/nix/system')
| -rw-r--r-- | modules/nix/system/default.nix | 7 |
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; + }; } |
