system: Clean /tmp on boot

Necessary since /tmp is no longer a tmpfs.
This commit is contained in:
Donovan Glover 2024-04-03 21:28:50 -04:00
parent d452e982e3
commit a18a120634
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -10,15 +10,19 @@ let
stateVersion = "22.11";
in
{
boot.loader = {
systemd-boot = {
enable = true;
editor = false;
configurationLimit = 10;
};
boot = {
tmp.cleanOnBoot = true;
timeout = 0;
efi.canTouchEfiVariables = true;
loader = {
systemd-boot = {
enable = true;
editor = false;
configurationLimit = 10;
};
timeout = 0;
efi.canTouchEfiVariables = true;
};
};
systemd = {