From ca867d32e62c17c509b2cc6e5b87327943017177 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 26 Nov 2024 20:03:33 +0000 Subject: [PATCH] delete nixos jellyfin container --- .../optional/nixos-containers/jellyfin.nix | 87 ------------------- 1 file changed, 87 deletions(-) delete mode 100644 hosts/common/optional/nixos-containers/jellyfin.nix diff --git a/hosts/common/optional/nixos-containers/jellyfin.nix b/hosts/common/optional/nixos-containers/jellyfin.nix deleted file mode 100644 index 6ac36ef..0000000 --- a/hosts/common/optional/nixos-containers/jellyfin.nix +++ /dev/null @@ -1,87 +0,0 @@ -{ - lib, - pkgs, - configVars, - ... -}: let - pubKeys = lib.filesystem.listFilesRecursive ../../users/keys; - containerName = "jellyfin"; - containerIp = configVars.networking.addresses.jellyfin.ip; - gatewayIp = configVars.networking.addresses.gateway.ip; -in { - environment.persistence."/persist" = { - hideMounts = true; - directories = [ - "/var/lib/nixos-containers/${containerName}" - ]; - }; - - networking.nat.enable = true; - networking.nat.internalInterfaces = ["ve-+"]; - networking.nat.externalInterface = "br0"; - - containers.${containerName} = { - autoStart = true; - privateNetwork = true; - hostBridge = "br0"; - nixpkgs = pkgs.path; - bindMounts = { - "/var/lib/jellyfin" = { - hostPath = "/media/main-ssd/jellyfin"; - isReadOnly = false; - }; - "/var/lib/jellyfin/data/media" = { - hostPath = "/media/media"; - isReadOnly = true; - }; - }; - - config = { - pkgs, - lib, - ... - }: { - networking = { - defaultGateway = "${gatewayIp}"; - interfaces.eth0.ipv4.addresses = [ - { - "address" = "${containerIp}"; - "prefixLength" = 24; - } - ]; - firewall = { - enable = true; - allowedTCPPorts = [ - 8096 - ]; - }; - useHostResolvConf = lib.mkForce false; - }; - - services.resolved.enable = true; - - services.jellyfin = { - enable = true; - openFirewall = true; - user="jellyfin"; - }; - - environment.systemPackages = [ - pkgs.jellyfin - pkgs.jellyfin-web - pkgs.jellyfin-ffmpeg - ]; - - services.openssh = { - enable = true; - settings.PasswordAuthentication = false; - }; - - users.users.root = { - openssh.authorizedKeys.keys = lib.lists.forEach pubKeys (key: builtins.readFile key); - }; - - system.stateVersion = "24.05"; - }; - }; -}