7 lines
147 B
Nix
7 lines
147 B
Nix
{ config, ... }:
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.grub.device = "nodev";
|
|
}
|