infra/module/aspect/base/boot.nix

15 lines
231 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
base = {
nixos = {
boot = {
initrd.systemd.enable = true;
tmp = {
useTmpfs = true;
cleanOnBoot = true;
};
};
};
};
};
}