nichts/hosts/vali/desktop/boot.nix
2024-04-10 11:35:09 +02:00

11 lines
202 B
Nix

{ inputs, outputs, profile-config, pkgs, ... }:
{
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
}