nix-config/hosts/server/boot.nix
2024-07-27 22:02:34 +00:00

9 lines
152 B
Nix

{ pkgs, ... }:
{
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
initrd.systemd.enable = true;
};
}