Group containers into their own directory

This commit is contained in:
Oliver Davies 2025-01-17 21:23:01 +00:00
parent 359bb61628
commit 75efe1bf99
6 changed files with 11 additions and 4 deletions

View file

@ -0,0 +1,8 @@
{
imports = [
./beaverhabits.nix
./freshrss.nix
./pi-hole.nix
./tubearchivist.nix
];
}

View file

@ -27,6 +27,8 @@ in
image = "pihole/pihole:latest"; image = "pihole/pihole:latest";
environment = { environment = {
"PIHOLE_DNS_1" = "8.8.8.8";
"PIHOLE_DNS_2" = "8.8.4.4";
"TZ" = "Europe/London"; "TZ" = "Europe/London";
}; };

View file

@ -1,15 +1,12 @@
{ {
imports = [ imports = [
./audiobookshelf.nix ./audiobookshelf.nix
./beaverhabits.nix ./containers
./forgejo.nix ./forgejo.nix
./freshrss.nix
./gitea.nix ./gitea.nix
./immich.nix ./immich.nix
./jellyfin.nix ./jellyfin.nix
./paperless.nix ./paperless.nix
./pi-hole.nix
./tubearchivist-container.nix
./vaultwarden.nix ./vaultwarden.nix
]; ];
} }