Akshay Mankar
8a2f83c96a
All checks were successful
Flake checks / Check (pull_request) Successful in 19m20s
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ flake, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
|
|
./networking.nix
|
|
./backups.nix
|
|
./apps/nginx.nix
|
|
|
|
./apps/collabora.nix
|
|
./apps/coturn.nix
|
|
./apps/forgejo.nix
|
|
./apps/keycloak.nix
|
|
./apps/mailman.nix
|
|
./apps/mastodon.nix
|
|
./apps/mediawiki.nix
|
|
./apps/nextcloud.nix
|
|
./apps/owncast.nix
|
|
./apps/nginx-mastodon.nix
|
|
./apps/nginx-mastodon-files.nix
|
|
./apps/nginx-website.nix
|
|
./apps/opensearch.nix
|
|
./apps/postgresql.nix
|
|
./apps/searx.nix
|
|
|
|
./apps/matrix/mautrix-telegram.nix
|
|
./apps/matrix/synapse.nix
|
|
./apps/matrix/irc.nix
|
|
./apps/nginx-matrix.nix
|
|
|
|
# Override with module from nixos-unstable, needs to be added
|
|
# to disabledModules as well
|
|
"${flake.inputs.unstable}/nixos/modules/services/misc/gitea.nix"
|
|
"${flake.inputs.unstable}/nixos/modules/services/web-apps/mastodon.nix"
|
|
];
|
|
|
|
disabledModules = [
|
|
"services/misc/gitea.nix"
|
|
"services/web-apps/mastodon.nix"
|
|
];
|
|
}
|