mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
10 lines
274 B
Nix
10 lines
274 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.modules.storeOptimize = lib.mkEnableOption "store optimization config";
|
|
config = lib.mkIf config.swarselsystems.modules.storeOptimize {
|
|
nix.optimise = {
|
|
automatic = true;
|
|
dates = [ "weekly" ];
|
|
};
|
|
};
|
|
}
|