2018-07-20 21:56:59 +01:00
|
|
|
{ config, lib, ... }:
|
2016-09-05 22:59:25 +01:00
|
|
|
|
|
|
|
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 {
|
2016-10-04 11:31:51 +01:00
|
|
|
default = ["03:45"];
|
2016-09-05 22:59:25 +01:00
|
|
|
type = types.listOf types.str;
|
|
|
|
description = ''
|
|
|
|
Specification (in the format described by
|
|
|
|
<citerefentry><refentrytitle>systemd.time</refentrytitle>
|
2017-03-21 07:27:56 +00:00
|
|
|
<manvolnum>7</manvolnum></citerefentry>) of the time at
|
2016-09-05 22:59:25 +01:00
|
|
|
which the optimiser will run.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
|
|
|
systemd.services.nix-optimise =
|
|
|
|
{ description = "Nix Store Optimiser";
|
2019-07-01 11:05:57 +01:00
|
|
|
# No point this if the nix daemon (and thus the nix store) is outside
|
|
|
|
unitConfig.ConditionPathIsReadWrite = "/nix/var/nix/daemon-socket";
|
2016-09-05 22:59:25 +01:00
|
|
|
serviceConfig.ExecStart = "${config.nix.package}/bin/nix-store --optimise";
|
2016-10-19 01:06:59 +01:00
|
|
|
startAt = optionals cfg.automatic cfg.dates;
|
2016-09-05 22:59:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|