1

Move homepage ServeNix -> ThinkNix

This commit is contained in:
2025-01-29 19:01:18 +01:00
parent 175562d85e
commit 45f1ca6412
3 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,7 @@
./services/gitea.nix
./services/gitea-runner.nix
# ./services/homeassistant.nix # Replaced by HAOS
./services/homepage.nix
# ./services/homepage.nix
./services/immich.nix
./services/kopia.nix
./services/nextcloud.nix

View File

@ -1,31 +0,0 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.homepage = {
image = "ghcr.io/gethomepage/homepage:latest";
autoStart = true;
dependsOn = [
# "pihole"
];
ports = [
# "3000:3000"
];
volumes = [
"homepage_config:/app/config"
"/var/run/docker.sock:/var/run/docker.sock:ro"
];
environment = {};
extraOptions = [
"--net=behind-nginx"
];
};
}