nichts/hosts/vali/desktop/boot.nix

12 lines
202 B
Nix
Raw Normal View History

2024-04-10 11:35:09 +02:00
{ inputs, outputs, profile-config, pkgs, ... }:
{
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
}