This repository has been archived on 2024-11-21. You can view files and clone it, but cannot push or open issues or pull requests.
server_config/sys/srv/default.nix

25 lines
394 B
Nix
Raw Normal View History

2024-08-23 21:01:33 +02:00
{
2024-08-24 09:52:56 +02:00
config,
pkgs,
lib,
flakes,
...
}:
with lib; {
2024-08-23 21:01:33 +02:00
imports = [
2024-08-24 02:16:19 +02:00
./net.nix
./mediawiki.nix
./jitsi.nix
2024-09-04 09:47:49 +02:00
# ./matrix.nix currently not being used
2024-08-24 02:16:19 +02:00
./forgejo.nix
./vaultwarden.nix
./bepasty.nix
./jellyfin.nix
./msmtp.nix
./kuma.nix
2024-08-28 21:47:35 +02:00
# ./authentik.nix consumes too much RAM and serves no purpose for now
2024-08-28 20:24:17 +02:00
./paperless.nix
2024-09-04 10:18:22 +02:00
./trilium.nix
2024-08-23 21:01:33 +02:00
];
}