nixos-servers/kubenix-modules/all.nix
Pim Kunis 07bd2e1e01 feat(freshrss): Move to its own namespace
feat(longhorn): Add ability to specify PVC namespace
refactor(freshrss): Simplify env variable declaration
2024-07-14 11:47:46 +02:00

39 lines
625 B
Nix

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