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