diff --git a/services/archi.nix b/services/archi.nix deleted file mode 100644 index 85a11d0..0000000 --- a/services/archi.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ ... }: - -{ - services.archisteamfarm = { - enable = true; - web-ui.enable = true; - - bots.wizardlink = { - enabled = true; - passwordFile = /var/lib/archisteamfarm/bots/wizardlink.password; - username = "master1891891"; - - settings = { - CustomGamePlayedWhileFarming = "In the fields"; - CustomGamePlayedWhileIdle = "Out from the fields"; - }; - }; - - bots.zak = { - enabled = true; - passwordFile = /var/lib/archisteamfarm/bots/zak.password; - username = "matheuszak"; - }; - }; -} diff --git a/services/caddy.nix b/services/caddy.nix deleted file mode 100644 index 2d6f8cb..0000000 --- a/services/caddy.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ ... }: { - services.caddy = { - enable = true; - - virtualHosts."thewizard.link".extraConfig = '' - redir https://github.com/wizardlink/ - header Strict-Transport-Security "max-age=63072000; includeSubDomains" - ''; - - virtualHosts."jellyfin.thewizard.link".extraConfig = '' - encode gzip - reverse_proxy 127.0.0.1:8096 { - flush_interval -1 - } - ''; - - virtualHosts."foundry.thewizard.link".extraConfig = '' - reverse_proxy 127.0.0.1:30000 { - flush_interval -1 - } - ''; - }; -} diff --git a/services/jellyfin.nix b/services/jellyfin.nix deleted file mode 100644 index 078feff..0000000 --- a/services/jellyfin.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ pkgs, ... }: - -{ - services.jellyfin = { - enable = true; - openFirewall = true; - user = "wizardlink"; - }; -}