2023-11-18 17:46:23 +00:00
|
|
|
{ flake, ... }:
|
2023-10-27 21:06:55 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
./hardware-configuration.nix
|
2023-10-28 09:28:41 +00:00
|
|
|
./configuration.nix
|
2023-10-28 11:02:04 +00:00
|
|
|
|
2023-10-28 11:55:10 +00:00
|
|
|
./networking.nix
|
2023-11-05 21:54:09 +00:00
|
|
|
./backups.nix
|
2023-10-28 13:31:44 +00:00
|
|
|
./apps/nginx.nix
|
2023-10-28 16:18:06 +00:00
|
|
|
|
2023-10-28 19:39:13 +00:00
|
|
|
./apps/collabora.nix
|
2023-11-19 16:22:09 +00:00
|
|
|
./apps/coturn.nix
|
2023-10-29 00:55:35 +00:00
|
|
|
./apps/forgejo.nix
|
2023-10-28 21:33:07 +00:00
|
|
|
./apps/keycloak.nix
|
2023-10-28 22:31:09 +00:00
|
|
|
./apps/mailman.nix
|
|
|
|
./apps/mastodon.nix
|
2023-10-30 00:22:34 +00:00
|
|
|
./apps/mediawiki.nix
|
2023-10-28 00:46:38 +00:00
|
|
|
./apps/nextcloud.nix
|
2023-10-29 21:10:29 +00:00
|
|
|
./apps/owncast.nix
|
2023-10-28 16:56:22 +00:00
|
|
|
./apps/nginx-mastodon.nix
|
2023-10-28 15:21:54 +00:00
|
|
|
./apps/nginx-mastodon-files.nix
|
2023-10-28 14:26:02 +00:00
|
|
|
./apps/nginx-website.nix
|
2023-10-28 16:18:06 +00:00
|
|
|
./apps/opensearch.nix
|
2023-10-28 14:45:30 +00:00
|
|
|
./apps/postgresql.nix
|
2023-10-29 14:34:25 +00:00
|
|
|
./apps/searx.nix
|
2023-10-28 00:21:34 +00:00
|
|
|
|
2023-10-29 00:55:35 +00:00
|
|
|
./apps/matrix/mautrix-telegram.nix
|
|
|
|
./apps/matrix/synapse.nix
|
2023-11-19 12:59:44 +00:00
|
|
|
./apps/matrix/irc.nix
|
2023-10-29 03:48:26 +00:00
|
|
|
./apps/nginx-matrix.nix
|
2023-11-18 17:46:23 +00:00
|
|
|
|
2023-11-19 01:23:34 +00:00
|
|
|
# Override with module from nixos-unstable, needs to be added
|
|
|
|
# to disabledModules as well
|
|
|
|
"${flake.inputs.unstable}/nixos/modules/services/misc/gitea.nix"
|
2023-11-18 17:46:23 +00:00
|
|
|
"${flake.inputs.unstable}/nixos/modules/services/web-apps/mastodon.nix"
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledModules = [
|
2023-11-19 01:23:34 +00:00
|
|
|
"services/misc/gitea.nix"
|
2023-11-18 17:46:23 +00:00
|
|
|
"services/web-apps/mastodon.nix"
|
2023-10-27 21:06:55 +00:00
|
|
|
];
|
|
|
|
}
|