nixos-servers/kubenix-modules/all.nix

38 lines
629 B
Nix
Raw Normal View History

let
applications = [
2024-04-13 14:37:18 +00:00
./freshrss.nix
./cyberchef.nix
./kms.nix
./inbucket.nix
./radicale.nix
./syncthing.nix
./nextcloud.nix
./pihole.nix
./hedgedoc.nix
./paperless-ngx.nix
./kitchenowl.nix
./forgejo
2024-04-13 14:37:18 +00:00
./media.nix
./bind9
2024-04-13 14:37:18 +00:00
./dnsmasq.nix
# ./minecraft.nix
./blog.nix
./atticd.nix
./argo.nix
];
in
{
imports = [
./base.nix
./custom-types.nix
./longhorn.nix
2024-04-13 14:37:18 +00:00
./esrom.nix
./metallb.nix
./cert-manager.nix
./custom/ingress.nix
./custom/nfs-volume.nix
./custom/longhorn-volume.nix
./traefik.nix
] ++ applications;
2024-04-13 14:37:18 +00:00
}