From 370ebe026483753cee6c6a993919f98f51af23df Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 26 Jul 2025 13:26:33 -0400 Subject: shinji: switch to grub --- hosts/shinji/hardware.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/hosts/shinji/hardware.nix b/hosts/shinji/hardware.nix index 7930240..e199a8d 100644 --- a/hosts/shinji/hardware.nix +++ b/hosts/shinji/hardware.nix @@ -1,9 +1,13 @@ -{...}: { +{config, ...}: { # bootloader - boot.loader.systemd-boot.enable = true; - boot.loader.efi = { - canTouchEfiVariables = true; - efiSysMountPoint = "/boot/efi"; + boot.loader = { + efi.canTouchEfiVariables = true; + grub = { + enable = true; + efiSupport = true; + device = "nodev"; + splashImage = config.theme.wallpaper; + }; }; # kernel modules @@ -35,7 +39,7 @@ }; # boot - fileSystems."/boot/efi" = { + fileSystems."/boot" = { device = "/dev/disk/by-uuid/6F93-6A0B"; fsType = "vfat"; options = ["fmask=0022" "dmask=0022"]; -- cgit v1.2.3-freya