dotfiles/modules/boot/clean-tmp.nix

14 lines
229 B
Nix
Raw Normal View History

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