Files
nix-config/modules/tmpfs.nix
2024-04-16 19:33:19 +02:00

16 lines
229 B
Nix

{config, lib, ...}:
with lib;
let
cfg = config.kop.tmpfs;
in
{
options.kop.tmpfs = {
enable = mkEnableOption "Enables tmpfs";
};
config = mkIf cfg.enable {
boot.tmp.useTmpfs = true;
};
}