infra/hosts/nachtigall/default.nix
teutat3s 6ad4842c2d
Some checks failed
Flake checks / Check (pull_request) Failing after 2m59s
mas: move to module, add secrets for prod
2024-10-30 17:57:33 +01:00

21 lines
495 B
Nix

{ flake, ... }:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./configuration.nix
./networking.nix
./wireguard.nix
./backups.nix
"${flake.inputs.fork}/nixos/modules/services//matrix/matrix-authentication-service.nix"
"${flake.inputs.unstable}/nixos/modules/services/web-apps/mastodon.nix"
];
disabledModules = [
"services/matrix/matrix-authentication-service.nix "
"services/web-apps/mastodon.nix"
];
}