9 lines
150 B
Nix
Executable file
9 lines
150 B
Nix
Executable file
{ ... }:
|
|
|
|
{
|
|
boot.loader = {
|
|
grub.enable = true;
|
|
grub.device = "/dev/vda"; # or "nodev" for efi only
|
|
systemd-boot.enable = false;
|
|
};
|
|
}
|