nix-config/modules/systemd-boot.nix

15 lines
174 B
Nix

{
...
}: {
boot = {
loader = {
systemd-boot = {
enable = true;
};
efi.canTouchEfiVariables = true;
};
tmp.useTmpfs = true;
};
}