From 9efa381a4c48d71940d0ec1b8e1990681b9e2c07 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sat, 8 Apr 2023 23:36:46 -0400 Subject: [PATCH] Perception back to systemd boot --- machines/perception/configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/machines/perception/configuration.nix b/machines/perception/configuration.nix index 37be77e..7109fd4 100644 --- a/machines/perception/configuration.nix +++ b/machines/perception/configuration.nix @@ -23,7 +23,7 @@ }; }; config = { - setupGrub = true; + setupGrub = false; nix = { autoUpdate = true; autoGC = true; @@ -31,6 +31,12 @@ harden = false; }; }; + + # Configure bootloader + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + boot.loader.efi.efiSysMountPoint = "/boot/efi"; + boot.kernelParams = [ "net.ifnames=0" ]; # Configure networking networking = { domain = "mccarty.io";