infra/hosts/tankstelle/configuration.nix

18 lines
226 B
Nix

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