Nixos-Configuration/configurations/nixos/authelia-tofu/default.nix
steven carpenter bbd0b5f831
Some checks failed
/ check (push) Failing after 14s
/ deploy (push) Has been skipped
added authelia container
2025-09-14 18:19:02 -04:00

26 lines
359 B
Nix

{
flake,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
];
services.yggdrasil.persistentKeys = false;
deploy = {
enable = false;
};
networking = {
hostName = "base-tofu";
};
environment.systemPackages = [
authelia
];
system.stateVersion = "25.05";
}