Files
flocon/hosts/haze/boot.nix
2025-03-11 22:42:26 +01: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" ];
}