From b9868a901374ce1928b28157668094d2402fab0f Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sat, 30 Nov 2024 01:38:05 -0600 Subject: [PATCH] removed podman labels for flame --- modules/servers/lidarr.nix | 6 ------ modules/servers/maloja.nix | 6 ------ modules/servers/multi-scrobbler.nix | 6 ------ modules/servers/ryot.nix | 6 ------ 4 files changed, 24 deletions(-) diff --git a/modules/servers/lidarr.nix b/modules/servers/lidarr.nix index 7a6b9ae..5b3d2c0 100644 --- a/modules/servers/lidarr.nix +++ b/modules/servers/lidarr.nix @@ -28,12 +28,6 @@ in extraOptions = [ "--network=host" ]; - labels = { - "flame.type" = "application"; - "flame.name" = "Lidarr"; - "flame.url" = cfg.url; - "flame.icon" = "music"; - }; }; services.nginx.virtualHosts."${cfg.host}" = lib.mkIf cfg.enableProxy ( setup.proxyReverseFix cfg.hostName cfg.port // { } diff --git a/modules/servers/maloja.nix b/modules/servers/maloja.nix index b64b3f7..79214a9 100644 --- a/modules/servers/maloja.nix +++ b/modules/servers/maloja.nix @@ -21,12 +21,6 @@ in MALOJA_SKIP_SETUP = "true"; }; volumes = [ "${config.my.containerData}/maloja:/mljdata" ]; - labels = { - "flame.type" = "application"; - "flame.name" = "Maloja"; - "flame.url" = cfg.url; - "flame.icon" = "bookmark-music"; - }; }; services.nginx.virtualHosts."${cfg.host}" = lib.mkIf cfg.enableProxy ( setup.proxyReverse cfg.hostName cfg.port // { } diff --git a/modules/servers/multi-scrobbler.nix b/modules/servers/multi-scrobbler.nix index aa344bf..f227535 100644 --- a/modules/servers/multi-scrobbler.nix +++ b/modules/servers/multi-scrobbler.nix @@ -22,12 +22,6 @@ in WS_ENABLE = "true"; }; volumes = [ "${config.my.containerData}/multi-scrobbler:/config" ]; - labels = { - "flame.type" = "application"; - "flame.name" = "Multi-scrobbler"; - "flame.url" = cfg.url; - "flame.icon" = "broadcast"; - }; }; services.nginx.virtualHosts."${cfg.host}" = lib.mkIf cfg.enableProxy ( setup.proxyReverse cfg.hostName cfg.port // { } diff --git a/modules/servers/ryot.nix b/modules/servers/ryot.nix index 1a645f0..da651f9 100644 --- a/modules/servers/ryot.nix +++ b/modules/servers/ryot.nix @@ -18,12 +18,6 @@ in FRONTEND_INSECURE_COOKIES = "true"; }; volumes = [ "${config.my.postgresSocket}:${config.my.postgresSocket}" ]; - labels = { - "flame.type" = "application"; - "flame.name" = "Ryot"; - "flame.url" = cfg.url; - "flame.icon" = "radar"; - }; }; services.nginx.virtualHosts."${cfg.host}" = lib.mkIf cfg.enableProxy ( setup.proxyReverse cfg.hostName cfg.port // { }