dotfiles/machines/common/nixos/boot.nix

12 lines
206 B
Nix
Raw Normal View History

{
boot = {
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot.enable = true;
initrd.systemd.enable = true;
2024-05-07 18:20:52 +02:00
supportedFilesystems = [ "ntfs" ];
plymouth.enable = true;
};
}