dotfiles/machines/common/nixos/boot.nix
2024-09-20 08:57:36 +02:00

11 lines
206 B
Nix

{
boot = {
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot.enable = true;
initrd.systemd.enable = true;
supportedFilesystems = [ "ntfs" ];
plymouth.enable = true;
};
}