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

@ -17,6 +17,7 @@
# General
# ./services/kopia.nix
./services/homepage.nix
./services/nginx-proxy-manager.nix
./services/portainer.nix
./services/whats-up-docker.nix

View File

@ -0,0 +1,31 @@
{
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"
];
};
}