nixos-config/modules/boot/clean-tmp.nix

19 lines
232 B
Nix
Raw Normal View History

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