switch to grub

This commit is contained in:
Daniel Bulant 2025-08-24 10:07:46 +02:00
parent 2c472a45a8
commit a474aadd0c
No known key found for this signature in database

View file

@ -19,9 +19,6 @@ in
# /etc/nixos/cachix.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
nix.daemonCPUSchedPolicy = "idle";
nix.daemonIOSchedClass = "idle";
@ -84,8 +81,16 @@ in
swraid.enable = false;
initrd.systemd.enable = true;
loader = {
# systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
timeout = 0;
grub.enable = true;
grub.device = "nodev";
grub.efiSupport = true;
};
};
boot.loader.timeout = 0;
users.users.dan = {
isNormalUser = true;