diff options
Diffstat (limited to 'hosts/common')
-rw-r--r-- | hosts/common/system/boot.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/common/system/boot.nix b/hosts/common/system/boot.nix index 974b072..053b81d 100644 --- a/hosts/common/system/boot.nix +++ b/hosts/common/system/boot.nix @@ -2,6 +2,14 @@ { boot = { + loader = { + # Use the systemd-boot EFI boot loader. + systemd-boot.enable = true; + # Prohibits gaining root access by passing init=/bin/sh as a kernel parameter + boot.loader.systemd-boot.editor = false; + efi.canTouchEfiVariables = true; + }; + kernelPackages = pkgs.linuxPackages_latest; tmpOnTmpfs = true; }; |