diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/configuration.nix | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index a725990..746e647 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -8,17 +8,20 @@ ../modules/virtualisation ]; - # Use the systemd-boot boot loader. - boot.loader = { - systemd-boot = { - enable = true; - editor = false; - }; - efi = { - efiSysMountPoint = "/boot"; - canTouchEfiVariables = true; + boot = { + loader = { + systemd-boot = { + enable = true; + editor = false; + }; + efi = { + efiSysMountPoint = "/boot"; + canTouchEfiVariables = true; + }; + timeout = 0; }; - timeout = 0; + + cleanTmpDir = true; }; # Set your time zone. |