13 lines
222 B
Nix
13 lines
222 B
Nix
{ ... }:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
initrd.systemd.enable = true;
|
|
};
|
|
}
|