diff options
-rw-r--r-- | configuration.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index a193d6b..f9cea19 100644 --- a/configuration.nix +++ b/configuration.nix @@ -13,9 +13,12 @@ in ]; # boot - boot.loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; + boot = { + tmp.useTmpfs = true; + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; }; # networking |