infra/hosts/tankstelle/configuration.nix
teutat3s 418810f4bc
Some checks failed
Flake checks / Check (pull_request) Failing after 35s
style: format using treefmt
2024-05-30 15:21:44 +02:00

17 lines
266 B
Nix

{
flake,
config,
pkgs,
...
}:
{
imports = [ ./hardware-configuration.nix ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
system.stateVersion = "23.11";
}