voidconf/modules/nix-settings.nix

42 lines
977 B
Nix
Raw Normal View History

2023-12-16 19:26:15 +01:00
{ lib, config, ... }:
with lib;
2023-12-16 20:13:37 +01:00
let cfg = config.voidcruiser.nixSettings;
2023-12-16 19:26:15 +01:00
in {
2023-12-16 20:13:37 +01:00
options.voidcruiser.nixSettings = {
2023-12-16 19:26:15 +01:00
gc = {
automatic = mkOption {
type = types.bool;
default = true;
description = "Enables automatic garbage collection";
};
dates = mkOption {
type = types.str;
default = "weekly";
example = "03:15";
description = mdDoc ''
How often or when garbage collection is performed. For most desktop and server systems
a sufficient garbage collection is once a week.
The format is described in
{manpage}`systemd.time(7)`.
'';
};
};
};
config = {
nix = {
settings = {
trusted-users = [
"root"
"@wheel"
];
};
gc = {
automatic = cfg.gc.automatic;
dates = cfg.gc.dates;
};
settings.experimental-features = [ "flakes" "nix-command" ];
};
};
}