summary refs log tree commit diff stats
path: root/system
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
parent7c8cbc1d0743a192ce8145539830fcbc3beb2fd2 (diff)
downloadnixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.tar.lz
nixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.tar.zst
nixfiles-afd061bec3bc7221931119d3ea55fa808eef9dcb.zip
remove nh
Diffstat (limited to 'system')
-rw-r--r--system/marvin.nix1
-rw-r--r--system/settings/programs/nh.nix20
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;
-}