mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-03 19:39:40 +01:00
system: Clean /tmp on boot
Necessary since /tmp is no longer a tmpfs.
This commit is contained in:
parent
d452e982e3
commit
a18a120634
@ -10,15 +10,19 @@ let
|
|||||||
stateVersion = "22.11";
|
stateVersion = "22.11";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
boot.loader = {
|
boot = {
|
||||||
systemd-boot = {
|
tmp.cleanOnBoot = true;
|
||||||
enable = true;
|
|
||||||
editor = false;
|
|
||||||
configurationLimit = 10;
|
|
||||||
};
|
|
||||||
|
|
||||||
timeout = 0;
|
loader = {
|
||||||
efi.canTouchEfiVariables = true;
|
systemd-boot = {
|
||||||
|
enable = true;
|
||||||
|
editor = false;
|
||||||
|
configurationLimit = 10;
|
||||||
|
};
|
||||||
|
|
||||||
|
timeout = 0;
|
||||||
|
efi.canTouchEfiVariables = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd = {
|
systemd = {
|
||||||
|
Loading…
Reference in New Issue
Block a user