nix-optimise service: init

Closes https://github.com/NixOS/nixpkgs/pull/18378
wip/yesman
Matt McHenry 8 years ago committed by Joachim Fasting
parent 5f0302b4a1
commit de9546307f
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08
  1. 1
      nixos/modules/module-list.nix
  2. 49
      nixos/modules/services/misc/nix-optimise.nix

@ -250,6 +250,7 @@
./services/misc/mwlib.nix
./services/misc/nix-daemon.nix
./services/misc/nix-gc.nix
./services/misc/nix-optimise.nix
./services/misc/nixos-manual.nix
./services/misc/nix-ssh-serve.nix
./services/misc/nzbget.nix

@ -0,0 +1,49 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.nix.optimise;
in
{
###### interface
options = {
nix.optimise = {
automatic = mkOption {
default = false;
type = types.bool;
description = "Automatically run the nix store optimiser at a specific time.";
};
dates = mkOption {
default = "03:45";
type = types.listOf types.str;
description = ''
Specification (in the format described by
<citerefentry><refentrytitle>systemd.time</refentrytitle>
<manvolnum>5</manvolnum></citerefentry>) of the time at
which the optimiser will run.
'';
};
};
};
###### implementation
config = {
systemd.services.nix-optimise =
{ description = "Nix Store Optimiser";
serviceConfig.ExecStart = "${config.nix.package}/bin/nix-store --optimise";
startAt = optional cfg.automatic cfg.dates;
};
};
}
Loading…
Cancel
Save