mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-22 15:32:56 -05:00
11 lines
157 B
Nix
11 lines
157 B
Nix
|
{...}: {
|
||
|
boot = {
|
||
|
initrd.systemd.enable = true;
|
||
|
|
||
|
loader = {
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
systemd-boot.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|