nixos-servers/kubenix-modules/all.nix
Pim Kunis afa0bd023e Add option to add labels to Kubernetes nodes
Make nextcloud always go to nodes with fast storage
Don't mount nextcloud on syncthing pod
2024-05-24 23:40:19 +02:00

38 lines
649 B
Nix

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