31 lines
595 B
Nix
31 lines
595 B
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
with lib;
|
|
{
|
|
imports = [
|
|
./fudo/acme-for-hostname.nix
|
|
./fudo/authentication.nix
|
|
./fudo/chat.nix
|
|
./fudo/common.nix
|
|
./fudo/dns.nix
|
|
./fudo/git.nix
|
|
./fudo/grafana.nix
|
|
./fudo/kdc.nix
|
|
./fudo/ldap.nix
|
|
./fudo/local-network.nix
|
|
./fudo/mail.nix
|
|
./fudo/mail-container.nix
|
|
./fudo/minecraft-server.nix
|
|
./fudo/node-exporter.nix
|
|
./fudo/postgres.nix
|
|
./fudo/prometheus.nix
|
|
./fudo/secure-dns-proxy.nix
|
|
./fudo/slynk.nix
|
|
./fudo/system.nix
|
|
./fudo/webmail.nix
|
|
|
|
../fudo/profiles
|
|
../fudo/sites
|
|
];
|
|
}
|