9 lines
126 B
Nix
9 lines
126 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
boot = {
|
||
|
loader = {
|
||
|
systemd-boot.enable = true;
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
};
|
||
|
};
|
||
|
}
|