Remove dashboard

This commit is contained in:
♥ Minnie ♥ 2024-06-06 09:23:12 +08:00
parent 8f4801ebf8
commit e12564358d
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 0 additions and 45 deletions

View file

@ -3,7 +3,6 @@
{
imports = [
./adguardhome.nix
./homarr.nix
./jellyfin.nix
./jellyseerr.nix
./lidarr.nix

View file

@ -1,44 +0,0 @@
{ ... }:
{
virtualisation.oci-containers.containers = {
homarr = {
autoStart = true;
image = "ghcr.io/ajnart/homarr:latest";
ports = [
"7575:7575/tcp" # WebUI
];
volumes = [
# Container data
"/srv/containers/homarr/configs:/app/data/configs:rw"
"/srv/containers/homarr/icons:/app/public/icons:rw"
"/srv/containers/homarr/data:/data:rw"
# Docker Integration
"/var/run/docker.sock:/var/run/docker.sock:ro"
];
extraOptions = [
"--network=host"
];
};
};
services.traefik.dynamicConfigOptions.http.routers = {
homarr = {
rule = "Host(`kanto.dev`)";
entryPoints = [
"websecure"
];
middlewares = [
"admin"
];
service = "homarr";
};
};
services.traefik.dynamicConfigOptions.http.services = {
homarr.loadBalancer.servers = [
{ url = "http://127.0.0.1:7575"; }
];
};
}