8 lines
152 B
Nix
8 lines
152 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
loader.systemd-boot.enable = true;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
initrd.systemd.enable = true;
|
|
};
|
|
}
|