infra/hosts/nachtigall/default.nix
teutat3s 987c0919ca
All checks were successful
Flake checks / Check (pull_request) Successful in 27m37s
style: fix formatting
2024-10-17 20:31:47 +02:00

19 lines
346 B
Nix

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