Files
nix/os/system/boot.nix
2023-11-27 09:25:12 +01:00

7 lines
203 B
Nix

{ pkgs, ... }: {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.supportedFilesystems = [ "ntfs" ];
}