nixfiles/profiles/base/boot.nix

7 lines
114 B
Nix

{config, ...}: {
boot.tmp.useTmpfs =
if config ? "wsl" && config.wsl.enable
then false
else true;
}