turn off nix build logs

This commit is contained in:
Sean Buckley 2024-12-08 20:13:01 -05:00
parent 2406a698c6
commit 0822cce8b6

View file

@ -40,8 +40,6 @@
security.sudo.extraConfig = "Defaults lecture=never"; security.sudo.extraConfig = "Defaults lecture=never";
systemd.tmpfiles.rules = [ "e /nix/var/log - - - 30d" ];
systemd.oomd.enable = false; # using earlyoom systemd.oomd.enable = false; # using earlyoom
zramSwap.enable = lib.mkDefault true; zramSwap.enable = lib.mkDefault true;
@ -54,6 +52,7 @@
nixPath = [ "nixpkgs=flake:nixpkgs" ]; nixPath = [ "nixpkgs=flake:nixpkgs" ];
extraOptions = '' extraOptions = ''
experimental-features = nix-command flakes experimental-features = nix-command flakes
keep-build-log = false
''; '';
}; };