mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 22:02:25 +01:00
7 lines
203 B
Nix
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" ];
|
|
}
|