Files
nix-config/modules/misc/tmpfs.nix
2025-10-30 21:59:31 +01:00

15 lines
214 B
Nix

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