Pim Kunis
afa0bd023e
Make nextcloud always go to nodes with fast storage Don't mount nextcloud on syncthing pod
38 lines
649 B
Nix
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;
|
|
}
|