infra/homelab/kubernetes.nix
Gabriel Simmer 565db50631
All checks were successful
--> Linted: GITLEAKS No errors were found in the linting process
--> Linted: JSCPD No errors were found in the linting process
--> Linted: NATURAL_LANGUAGE No errors were found in the linting process
--> Linted: YAML No errors were found in the linting process
Lint / lint (push) Successful in 28s
ci/woodpecker/push/woodpecker Pipeline was successful
Experimenting with Woodpecker CI
2024-05-16 20:34:02 +01:00

32 lines
706 B
Nix

{
lib,
config,
kubenix,
...
}: {
imports = [
kubenix.modules.k8s
kubenix.modules.helm
(import ./custom.nix)
(import ./nginx.nix)
(import ./tclip.nix)
(import ./vrchat-prometheus-exporter.nix)
(import ./overseerr.nix)
(import ./immich.nix)
(import ./endpoints.nix)
(import ./homepage.nix)
(import ./cloudflare-exporter.nix)
(import ./piped.nix)
# (import ./conduit.nix)
(import ./irc.nix)
# (import ./netboot.nix)
(import ./nitter.nix)
# (import ./changedetection.nix)
(import ./nextdns-exporter.nix)
(import ./nitter-bot.nix)
(import ./miniflux.nix)
# (import ./snikket.nix)
(import ./woodpecker.nix)
];
}