Hey there,
I’m an absolute beginner with nix, so the solution might look obvious for some of you but I couldn’t figure it out ![]()
I tried to change the bootloader from systemd to grub, so I changed to previous code to this:
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
};
grub = {
enable = true;
efiSupport = true;
#efiInstallAsRemovable = true;
device = "nodev";
};
};
It’s basically just copied from here: Bootloader - NixOS Wiki
The problem I have is, that after running sudo nixos-rebuild --install-bootloader boot i still boot into systemd.