15 lines
203 B
Nix
15 lines
203 B
Nix
{...}: {
|
|
boot.loader = {
|
|
systemd-boot = {
|
|
enable = false;
|
|
};
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
};
|
|
grub = {
|
|
enable = true;
|
|
device = "nodev";
|
|
};
|
|
};
|
|
}
|