Remove dashboard
This commit is contained in:
parent
8f4801ebf8
commit
e12564358d
|
@ -3,7 +3,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./adguardhome.nix
|
./adguardhome.nix
|
||||||
./homarr.nix
|
|
||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
./jellyseerr.nix
|
./jellyseerr.nix
|
||||||
./lidarr.nix
|
./lidarr.nix
|
||||||
|
|
|
@ -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"; }
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue