fix[work]: load home on boot

This commit is contained in:
Leon Schwarzäugl 2025-07-05 12:14:38 +02:00
parent 4b439fd3e7
commit dfea676a01
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 10 additions and 4 deletions

View file

@ -1946,8 +1946,11 @@ My work machine. Built for more security, this is the gold standard of my config
};
};
fileSystems."/persist".neededForBoot = true;
fileSystems."/var/log".neededForBoot = true;
fileSystems = {
"/persist".neededForBoot = true;
"/home".neededForBoot = true;
"/var/log".neededForBoot = true;
};
}
#+end_src

View file

@ -72,6 +72,9 @@
};
};
fileSystems."/persist".neededForBoot = true;
fileSystems."/var/log".neededForBoot = true;
fileSystems = {
"/persist".neededForBoot = true;
"/home".neededForBoot = true;
"/var/log".neededForBoot = true;
};
}