* Add options to handle automatic calls to the garbage collector.

These options avoid manual references to pkgs.nixUnstable which might be
  changed with environment.nix option.

svn path=/nixos/trunk/; revision=18798
wip/yesman
Nicolas Pierron 15 years ago
parent 4eabed3f0f
commit f4a6f9e84b
  1. 1
      modules/module-list.nix
  2. 54
      modules/services/misc/nix-gc.nix

@ -54,6 +54,7 @@
./services/misc/disnix.nix
./services/misc/gpsd.nix
./services/misc/nix-daemon.nix
./services/misc/nix-gc.nix
./services/misc/nixos-manual.nix
./services/misc/rogue.nix
./services/misc/synergy.nix

@ -0,0 +1,54 @@
{ config, pkgs, ... }:
with pkgs.lib;
let
nix = config.environment.nix;
cfg = config.nix.gc;
in
{
###### interface
options = {
nix.gc = {
automatic = mkOption {
default = false;
example = true;
description = "
Automatically run the garbage collector at specified dates.
";
};
dates = mkOption {
default = "15 03 * * *";
description = "
Run the garbage collector at specified dates to avoid full
hard-drives.
";
};
options = mkOption {
default = "";
example = "--max-freed $((64 * 1024**3))";
description = "
Options given to <filename>nix-collect-garbage</filename> when the
garbage collector is run automatically.
";
};
};
};
###### implementation
config = mkIf cfg.automatic {
services.cron.systemCronJobs = [
"${cfg.dates} root ${nix}/bin/nix-collect-garbage ${cfg.options} > /var/log/gc.log 2>&1"
];
};
}
Loading…
Cancel
Save