diff options
author | Alex Auvolat <alex@adnab.me> | 2023-07-20 13:50:17 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-07-20 13:50:17 +0200 |
commit | c865834d3bace7b5b66cdb4618c776e5e7233586 (patch) | |
tree | f8c1dfb7ab31e347ccc74aa79a887df4ab22a712 /nixos/kusanagi.nix | |
parent | 958063f086e1bfd7d75208dae9339acec33b1942 (diff) | |
download | user-config-c865834d3bace7b5b66cdb4618c776e5e7233586.tar.gz user-config-c865834d3bace7b5b66cdb4618c776e5e7233586.zip |
disable nix gc on kusanagi
Diffstat (limited to 'nixos/kusanagi.nix')
-rw-r--r-- | nixos/kusanagi.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/kusanagi.nix b/nixos/kusanagi.nix index cf5450c..1b3f612 100644 --- a/nixos/kusanagi.nix +++ b/nixos/kusanagi.nix @@ -101,6 +101,10 @@ in }; home-manager.users.lx = import ../nixpkgs/kusanagi.nix { inherit pkgs; }; + # ---- disable nix gc ---- + + nix.gc.automatic = false; + # ---- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; |