infra/hosts/tankstelle/configuration.nix

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

18 lines
226 B
Nix
Raw Normal View History

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