Files
nixos/Droidnix/generated/modules/traveldroid/system/nix.nix
T
2026-04-23 20:28:59 +02:00

19 lines
485 B
Nix

# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ lib, config, ... }:
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
download-buffer-size = 536870912; # 512 MB
cores = 8;
max-jobs = "auto";
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
boot.loader.systemd-boot.configurationLimit = 3;
}