mirror of
https://github.com/mdlayher/homelab.git
synced 2024-12-14 11:47:32 +00:00
18 lines
315 B
Nix
18 lines
315 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
nix = {
|
|
# Automatic Nix GC.
|
|
gc = {
|
|
automatic = true;
|
|
dates = "04:00";
|
|
options = "--delete-older-than 30d";
|
|
};
|
|
extraOptions = ''
|
|
min-free = ${toString (500 * 1024 * 1024)}
|
|
'';
|
|
|
|
# Automatic store optimization.
|
|
autoOptimiseStore = true;
|
|
};
|
|
}
|