infra/hosts/tankstelle/configuration.nix
Hendrik Sokolowski 946585d1ca
Some checks failed
Flake checks / Check (pull_request) Failing after 1m38s
initial commit of tankstelle
2024-05-29 14:08:59 +02:00

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";
}