mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
16 lines
214 B
Nix
16 lines
214 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
let
|
||
|
inherit (lib)
|
||
|
singleton;
|
||
|
in
|
||
|
{
|
||
|
boot.loader.efi = {
|
||
|
canTouchEfiVariables = true;
|
||
|
};
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
device = "nodev";
|
||
|
efiSupport = true;
|
||
|
};
|
||
|
}
|