Files
flocon/machines/haze/boot.nix
2025-05-16 15:46:47 +02:00

22 lines
304 B
Nix

{
boot.loader = {
systemd-boot = {
enable = true;
};
efi.canTouchEfiVariables = true;
};
console = {
earlySetup = true;
useXkbConfig = true;
};
services = {
xserver = {
xkb.layout = "fr";
};
};
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
}