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

66 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-02 00:03:13 +00:00
default = "00:43";
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
config = {
2013-03-02 00:03:13 +00:00
#systemd.timers.nix-gc.enable = cfg.automatic;
systemd.timers.nix-gc.enable = true;
systemd.timers.nix-gc.timerConfig.OnCalendar = cfg.dates;
2013-03-02 00:03:13 +00:00
systemd.services.nix-gc =
{ description = "Nix Garbage Collector";
path = [ config.environment.nix ];
script = "exec nix-collect-garbage ${cfg.options}";
};
};
}