2024-06-30 03:56:48 +03:00
|
|
|
{ ... }: {
|
2024-05-04 23:15:57 +03:00
|
|
|
# Allow installation of proprietary software.
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
2024-06-24 17:53:37 +03:00
|
|
|
nix.settings = {
|
|
|
|
# Deduplicate store automatically. Slows down switches a bit, but saves space.
|
|
|
|
auto-optimise-store = true;
|
|
|
|
|
|
|
|
# Allow use of flakes.
|
|
|
|
experimental-features = [ "nix-command " "flakes" ];
|
|
|
|
|
|
|
|
# When running GC, keep .drv files.
|
|
|
|
keep-derivations = true;
|
|
|
|
|
|
|
|
# When running GC, keep build dependencies.
|
|
|
|
keep-outputs = true;
|
|
|
|
|
|
|
|
# Run GC automatically when there's a 50 GB or less free space.
|
|
|
|
min-free = 50 * 1000 * 1000 * 1000;
|
|
|
|
};
|
2024-03-09 19:42:03 +03:00
|
|
|
|
2024-05-04 23:15:57 +03:00
|
|
|
# NOTE: Currently I run GC completely, but this setting (put above near min-free)
|
|
|
|
# can stop GC when you hit 101 GB of free space available.
|
2024-06-22 23:34:03 +03:00
|
|
|
# max-free = ${toString 101 * 1024 * 1024 * 1024}
|
2024-05-04 23:15:57 +03:00
|
|
|
|
|
|
|
# NOTE: Enable this if you want to run GC on schedule. I instead use `min-free`.
|
2024-03-04 00:34:39 +03:00
|
|
|
# nix.gc = {
|
|
|
|
# automatic = true;
|
|
|
|
# dates = "weekly";
|
|
|
|
# options = "--delete-older-than 30d";
|
|
|
|
# persistent = true;
|
|
|
|
# };
|
|
|
|
}
|