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;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc "Automatically run the nix store optimiser at a specific time.";
|
2016-09-05 22:59:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2022-08-05 18:39:00 +01:00
|
|
|
description = lib.mdDoc ''
|
2016-09-05 22:59:25 +01:00
|
|
|
Specification (in the format described by
|
2022-08-05 18:39:00 +01:00
|
|
|
{manpage}`systemd.time(7)`) of the time at
|
2016-09-05 22:59:25 +01:00
|
|
|
which the optimiser will run.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = {
|
2022-03-21 21:28:37 +00:00
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
assertion = cfg.automatic -> config.nix.enable;
|
|
|
|
message = ''nix.optimise.automatic requires nix.enable'';
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
systemd.services.nix-optimise = lib.mkIf config.nix.enable
|
2016-09-05 22:59:25 +01:00
|
|
|
{ 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
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|