diff --git a/hosts/chunk/Caddyfile b/hosts/chunk/Caddyfile index d7d412b..679aae2 100644 --- a/hosts/chunk/Caddyfile +++ b/hosts/chunk/Caddyfile @@ -73,13 +73,3 @@ grafana.cything.io { import common reverse_proxy localhost:8088 } - -warez.cything.io { - import common - reverse_proxy localhost:8096 -} - -t.cything.io { - import common - reverse_proxy localhost:8112 -} diff --git a/hosts/chunk/default.nix b/hosts/chunk/default.nix index 5cbde9e..f7d7482 100644 --- a/hosts/chunk/default.nix +++ b/hosts/chunk/default.nix @@ -24,8 +24,6 @@ ./ghost.nix ./conduit.nix ./immich.nix - ./jellyfin.nix - ./deluge.nix ]; sops.age.keyFile = "/root/.config/sops/age/keys.txt"; diff --git a/hosts/chunk/rclone.nix b/hosts/chunk/rclone.nix index a0ae200..9b379ec 100644 --- a/hosts/chunk/rclone.nix +++ b/hosts/chunk/rclone.nix @@ -33,19 +33,19 @@ # }; # }; - systemd.services.jellyfin-mount = { - enable = true; - description = "Mount the jellyfin data remote"; - after = ["network-online.target"]; - requires = ["network-online.target"]; - requiredBy = ["jellyfin.service"]; - serviceConfig = { - Type = "notify"; - ExecStartPre = "/usr/bin/env mkdir -p /mnt/jellyfin"; - ExecStart = "${pkgs.rclone}/bin/rclone mount --config /home/yt/.config/rclone/rclone.conf --allow-other --transfers=32 --dir-cache-time 72h --vfs-cache-mode writes --vfs-cache-max-size 2G jellyfin: /mnt/jellyfin"; - ExecStop = "${pkgs.fuse}/bin/fusermount -u /mnt/jellyfin"; - EnvironmentFile = config.sops.secrets."rclone/env".path; - }; - }; +# systemd.services.jellyfin-mount = { +# enable = true; +# description = "Mount the jellyfin data remote"; +# after = ["network-online.target"]; +# requires = ["network-online.target"]; +# requiredBy = ["jellyfin.service"]; +# serviceConfig = { +# Type = "notify"; +# ExecStartPre = "/usr/bin/env mkdir -p /mnt/jellyfin"; +# ExecStart = "${pkgs.rclone}/bin/rclone mount --config /home/yt/.config/rclone/rclone.conf --allow-other --transfers=32 --dir-cache-time 72h --vfs-cache-mode writes --vfs-cache-max-size 2G jellyfin: /mnt/jellyfin"; +# ExecStop = "${pkgs.fuse}/bin/fusermount -u /mnt/jellyfin"; +# EnvironmentFile = config.sops.secrets."rclone/env".path; +# }; +# }; programs.fuse.userAllowOther = true; }