infra/hosts/tankstelle/configuration.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
266 B
Nix
Raw Normal View History

2024-05-29 12:08:59 +00:00
{
flake,
config,
pkgs,
...
}:
{
2024-05-30 13:21:44 +00:00
imports = [ ./hardware-configuration.nix ];
2024-05-29 12:08:59 +00:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-05-30 13:21:44 +00:00
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2024-05-29 12:08:59 +00:00
system.stateVersion = "23.11";
}