nixpkgs/modules/services/misc/nix-gc.nix

70 lines
1.4 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
with pkgs.lib;
let
cfg = config.nix.gc;
in
{
###### interface
options = {
2013-03-02 00:03:13 +00:00
nix.gc = {
automatic = mkOption {
default = false;
type = types.bool;
2013-03-02 00:03:13 +00:00
description = "Automatically run the garbage collector at a specific time.";
};
dates = mkOption {
2013-03-28 12:35:07 +00:00
default = "03:15";
2013-03-02 00:03:13 +00:00
type = types.uniq types.string;
description = ''
Specification (in the format described by
<citerefentry><refentrytitle>systemd.time</refentrytitle>
<manvolnum>5</manvolnum></citerefentry>) of the time at
which the garbage collector will run.
'';
};
options = mkOption {
default = "";
example = "--max-freed $((64 * 1024**3))";
2013-03-02 00:03:13 +00:00
type = types.uniq types.string;
description = ''
Options given to <filename>nix-collect-garbage</filename> when the
garbage collector is run automatically.
2013-03-02 00:03:13 +00:00
'';
};
};
2013-03-02 00:03:13 +00:00
};
###### implementation
2013-03-28 12:35:07 +00:00
config = mkMerge [
2013-03-28 12:35:07 +00:00
{ systemd.services.nix-gc =
{ description = "Nix Garbage Collector";
path = [ config.environment.nix ];
script = "exec nix-collect-garbage ${cfg.options}";
};
}
2013-03-28 12:35:07 +00:00
(mkIf cfg.automatic {
systemd.timers.nix-gc =
{ wantedBy = [ "timers.target" ];
timerConfig.OnCalendar = cfg.dates;
};
})
2013-03-28 12:35:07 +00:00
];
}