2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-12-04 12:50:44 +00:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2009-12-04 12:50:44 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.nix.gc;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2013-03-02 00:03:13 +00:00
|
|
|
|
2009-12-04 12:50:44 +00:00
|
|
|
nix.gc = {
|
|
|
|
|
|
|
|
automatic = mkOption {
|
|
|
|
default = false;
|
2013-01-04 13:04:41 +00:00
|
|
|
type = types.bool;
|
2013-03-02 00:03:13 +00:00
|
|
|
description = "Automatically run the garbage collector at a specific time.";
|
2009-12-04 12:50:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dates = mkOption {
|
2013-03-28 12:35:07 +00:00
|
|
|
default = "03:15";
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2013-03-02 00:03:13 +00:00
|
|
|
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.
|
|
|
|
'';
|
2009-12-04 12:50:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
options = mkOption {
|
|
|
|
default = "";
|
|
|
|
example = "--max-freed $((64 * 1024**3))";
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2013-03-02 00:03:13 +00:00
|
|
|
description = ''
|
2009-12-04 12:50:44 +00:00
|
|
|
Options given to <filename>nix-collect-garbage</filename> when the
|
|
|
|
garbage collector is run automatically.
|
2013-03-02 00:03:13 +00:00
|
|
|
'';
|
2009-12-04 12:50:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2013-03-02 00:03:13 +00:00
|
|
|
|
2009-12-04 12:50:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2013-10-09 13:28:35 +01:00
|
|
|
config = {
|
|
|
|
|
|
|
|
systemd.services.nix-gc =
|
|
|
|
{ description = "Nix Garbage Collector";
|
2015-09-04 09:42:25 +01:00
|
|
|
script = "exec ${config.nix.package}/bin/nix-collect-garbage ${cfg.options}";
|
2013-10-09 13:28:35 +01:00
|
|
|
startAt = optionalString cfg.automatic cfg.dates;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2009-12-04 12:50:44 +00:00
|
|
|
|
|
|
|
}
|