2018-07-20 22:56:59 +02:00
|
|
|
{ config, lib, ... }:
|
2009-12-04 13:50:44 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-12-04 13:50:44 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.nix.gc;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2013-03-02 01:03:13 +01:00
|
|
|
|
2009-12-04 13:50:44 +01:00
|
|
|
nix.gc = {
|
|
|
|
|
|
|
|
automatic = mkOption {
|
|
|
|
default = false;
|
2013-01-04 14:04:41 +01:00
|
|
|
type = types.bool;
|
2013-03-02 01:03:13 +01:00
|
|
|
description = lib.mdDoc "Automatically run the garbage collector at a specific time.";
|
2009-12-04 13:50:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dates = mkOption {
|
2020-12-30 11:59:20 +01:00
|
|
|
type = types.str;
|
2013-03-28 13:35:07 +01:00
|
|
|
default = "03:15";
|
2020-12-30 11:59:20 +01:00
|
|
|
example = "weekly";
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
How often or when garbage collection is performed. For most desktop and server systems
|
|
|
|
a sufficient garbage collection is once a week.
|
|
|
|
|
|
|
|
The format is described in
|
|
|
|
{manpage}`systemd.time(7)`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
randomizedDelaySec = mkOption {
|
|
|
|
default = "0";
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2020-12-30 11:59:20 +01:00
|
|
|
example = "45min";
|
2013-03-02 01:03:13 +01:00
|
|
|
description = lib.mdDoc ''
|
2022-03-31 06:21:21 +02:00
|
|
|
Add a randomized delay before each garbage collection.
|
2020-12-30 11:59:20 +01:00
|
|
|
The delay will be chosen between zero and this value.
|
|
|
|
This value must be a time span in the format specified by
|
2013-03-02 01:03:13 +01:00
|
|
|
{manpage}`systemd.time(7)`
|
2020-12-30 11:59:20 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
persistent = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
example = false;
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
Takes a boolean argument. If true, the time when the service
|
|
|
|
unit was last triggered is stored on disk. When the timer is
|
|
|
|
activated, the service unit is triggered immediately if it
|
|
|
|
would have been triggered at least once during the time when
|
|
|
|
the timer was inactive. Such triggering is nonetheless
|
|
|
|
subject to the delay imposed by RandomizedDelaySec=. This is
|
|
|
|
useful to catch up on missed runs of the service when the
|
|
|
|
system was powered down.
|
2013-03-02 01:03:13 +01:00
|
|
|
'';
|
2009-12-04 13:50:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
options = mkOption {
|
|
|
|
default = "";
|
|
|
|
example = "--max-freed $((64 * 1024**3))";
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2013-03-02 01:03:13 +01:00
|
|
|
description = lib.mdDoc ''
|
2009-12-04 13:50:44 +01:00
|
|
|
Options given to {file}`nix-collect-garbage` when the
|
|
|
|
garbage collector is run automatically.
|
2013-03-02 01:03:13 +01:00
|
|
|
'';
|
2009-12-04 13:50:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2013-03-02 01:03:13 +01:00
|
|
|
|
2009-12-04 13:50:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2013-10-09 14:28:35 +02:00
|
|
|
config = {
|
2022-03-21 22:28:37 +01:00
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
assertion = cfg.automatic -> config.nix.enable;
|
|
|
|
message = ''nix.gc.automatic requires nix.enable'';
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
systemd.services.nix-gc = lib.mkIf config.nix.enable {
|
2020-12-30 11:59:20 +01:00
|
|
|
description = "Nix Garbage Collector";
|
|
|
|
script = "exec ${config.nix.package.out}/bin/nix-collect-garbage ${cfg.options}";
|
|
|
|
startAt = optional cfg.automatic cfg.dates;
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.timers.nix-gc = lib.mkIf cfg.automatic {
|
|
|
|
timerConfig = {
|
|
|
|
RandomizedDelaySec = cfg.randomizedDelaySec;
|
|
|
|
Persistent = cfg.persistent;
|
2013-10-09 14:28:35 +02:00
|
|
|
};
|
2020-12-30 11:59:20 +01:00
|
|
|
};
|
2013-10-09 14:28:35 +02:00
|
|
|
|
|
|
|
};
|
2009-12-04 13:50:44 +01:00
|
|
|
|
|
|
|
}
|