diff options
author | Alan Pearce | 2025-01-12 17:24:24 +0100 |
---|---|---|
committer | Alan Pearce | 2025-01-12 18:09:20 +0100 |
commit | afd061bec3bc7221931119d3ea55fa808eef9dcb (patch) | |
tree | 82089751c9e19aae84061623c6fdd9f6cd4bf431 /system | |
parent | 7c8cbc1d0743a192ce8145539830fcbc3beb2fd2 (diff) | |
download | nixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.tar.lz nixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.tar.zst nixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.zip |
remove nh
Diffstat (limited to 'system')
-rw-r--r-- | system/marvin.nix | 1 | ||||
-rw-r--r-- | system/settings/programs/nh.nix | 20 |
2 files changed, 0 insertions, 21 deletions
diff --git a/system/marvin.nix b/system/marvin.nix index c4a13e93..ed79c8f2 100644 --- a/system/marvin.nix +++ b/system/marvin.nix @@ -2,7 +2,6 @@ imports = [ ./settings/darwin.nix ./settings/dev.nix - ./settings/programs/nh.nix ./settings/programs/shell.nix ]; diff --git a/system/settings/programs/nh.nix b/system/settings/programs/nh.nix deleted file mode 100644 index 10738de0..00000000 --- a/system/settings/programs/nh.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ config, ... }: { - programs.nh = - let - flake = builtins.toString ../../..; - in - { - enable = true; - os = { - inherit flake; - }; - home = { - inherit flake; - }; - clean = { - enable = true; - extraArgs = "--keep-since 14d"; - }; - }; - nix.gc.automatic = !config.programs.nh.clean.enable; -} |