summary refs log tree commit diff stats
path: root/system/settings/programs/nh.nix
diff options
context:
space:
mode:
authorAlan Pearce2025-01-12 17:24:24 +0100
committerAlan Pearce2025-01-12 18:09:20 +0100
commitafd061bec3bc7221931119d3ea55fa808eef9dcb (patch)
tree82089751c9e19aae84061623c6fdd9f6cd4bf431 /system/settings/programs/nh.nix
parent7c8cbc1d0743a192ce8145539830fcbc3beb2fd2 (diff)
downloadnixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.tar.lz
nixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.tar.zst
nixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.zip
remove nh
Diffstat (limited to 'system/settings/programs/nh.nix')
-rw-r--r--system/settings/programs/nh.nix20
1 files changed, 0 insertions, 20 deletions
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;
-}