aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/core.nix20
1 files changed, 12 insertions, 8 deletions
diff --git a/modules/core.nix b/modules/core.nix
index 99a4a30..eeed242 100644
--- a/modules/core.nix
+++ b/modules/core.nix
@@ -5,15 +5,19 @@
...
}:
{
- boot.loader = {
- efi.canTouchEfiVariables = true;
- systemd-boot = {
- enable = true;
- editor = false;
- memtest86.enable = true;
- };
+ boot = {
+ loader = {
+ efi.canTouchEfiVariables = true;
+ systemd-boot = {
+ enable = true;
+ editor = false;
+ memtest86.enable = true;
+ };
+
+ timeout = 1;
+ };
- timeout = 1;
+ tmp.cleanOnBoot = true;
};
documentation.dev.enable = true;