enabled auto garbage collect

This commit is contained in:
Tassilo - 2022-04-28 17:51:03 +02:00
parent 851956510a
commit c3f896d073
Signed by: revol-xut
GPG Key ID: 4F56FF7759627D07

View File

@ -22,6 +22,7 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 2;
boot.tmpOnTmpfs = true;
hardware.hackrf.enable = true;
@ -38,6 +39,15 @@
networking.interfaces.enp1s0.useDHCP = true;
documentation.enable = false;
nix.gc = {
automatic = true;
dates = "daily";
};
services.journald.extraConfig = ''
SystemMaxUse=10M
'';
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";