2024-07-19 12:00:55 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-07-18 21:56:00 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.modules.clean-tmp;
|
2024-07-19 12:00:55 +00:00
|
|
|
in
|
|
|
|
{
|
2024-07-18 21:56:00 +00:00
|
|
|
options.modules.clean-tmp = {
|
|
|
|
enable = mkEnableOption "clean-tmp";
|
|
|
|
};
|
|
|
|
|
2024-07-19 12:00:55 +00:00
|
|
|
config = mkIf cfg.enable { boot.tmp.cleanOnBoot = true; };
|
|
|
|
}
|