nixos-servers/kubenix-modules/all.nix

33 lines
498 B
Nix
Raw Normal View History

let
applications = [
2024-04-13 14:37:18 +00:00
./inbucket.nix
./syncthing.nix
./pihole.nix
./hedgedoc.nix
./paperless.nix
2024-04-13 14:37:18 +00:00
./kitchenowl.nix
./forgejo
2024-04-13 14:37:18 +00:00
./media.nix
./bind9
2024-04-13 14:37:18 +00:00
./dnsmasq.nix
2024-06-01 09:12:43 +00:00
./attic.nix
2024-06-20 19:35:13 +00:00
./immich.nix
# ./argo.nix
# ./minecraft.nix
];
in
{
imports = [
./base.nix
./longhorn.nix
2024-04-13 14:37:18 +00:00
./esrom.nix
2024-06-02 13:51:54 +00:00
./ek2024.nix
2024-04-13 14:37:18 +00:00
./metallb.nix
./cert-manager.nix
./custom
./traefik.nix
./volumes.nix
./custom-types.nix
] ++ applications;
2024-04-13 14:37:18 +00:00
}