From 71ac75dde28b0e57c52eb5bbc2c5326832a25eac Mon Sep 17 00:00:00 2001 From: jahanson Date: Fri, 10 May 2024 20:39:49 -0500 Subject: [PATCH] Add boot loader --- nixos/profiles/hw-hetzner-cax.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/profiles/hw-hetzner-cax.nix b/nixos/profiles/hw-hetzner-cax.nix index da33788..3f96a3a 100644 --- a/nixos/profiles/hw-hetzner-cax.nix +++ b/nixos/profiles/hw-hetzner-cax.nix @@ -8,6 +8,8 @@ }: { imports = [ ]; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "virtio_scsi" "usbhid" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; @@ -26,4 +28,4 @@ networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; -} \ No newline at end of file +}