dotfiles/machines/common/linux/boot.nix

11 lines
206 B
Nix

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