diff options
author | Alan Pearce | 2024-12-08 18:03:42 +0100 |
---|---|---|
committer | Alan Pearce | 2024-12-08 18:03:42 +0100 |
commit | cd81a9cb3a15713ba1741c3e945afc915d6f993f (patch) | |
tree | 5e536cac9cd48337d7e672127b26779004a6d448 /system | |
parent | 8ba8be40043f6a2e28effa0c02d61938764dd141 (diff) | |
download | nixfiles-cd81a9cb3a15713ba1741c3e945afc915d6f993f.tar.lz nixfiles-cd81a9cb3a15713ba1741c3e945afc915d6f993f.tar.zst nixfiles-cd81a9cb3a15713ba1741c3e945afc915d6f993f.zip |
linde: use common nix configuration
Diffstat (limited to 'system')
-rw-r--r-- | system/linde.nix | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/system/linde.nix b/system/linde.nix index 4e93ca33..563931aa 100644 --- a/system/linde.nix +++ b/system/linde.nix @@ -25,6 +25,7 @@ in # Include the results of the hardware scan. ./linde-hardware.nix + ./settings/configuration/nix.nix ./settings/services/git-server.nix ]; age.secrets = { @@ -110,20 +111,10 @@ in }; nix = { - daemonCPUSchedPolicy = "batch"; - daemonIOSchedPriority = 6; settings = { max-jobs = 2; auto-optimise-store = true; trusted-users = [ "root" "nixremote" ]; - experimental-features = [ "nix-command" "flakes" ]; - substituters = [ - "https://nix-community.cachix.org" - ]; - - trusted-public-keys = [ - "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" - ]; }; gc = { automatic = true; |