diff --git a/os/hs/configuration.nix b/os/hs/configuration.nix index f1b993d..7d5713c 100644 --- a/os/hs/configuration.nix +++ b/os/hs/configuration.nix @@ -76,7 +76,11 @@ in { users.users.ant = { isNormalUser = true; description = "ant"; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ + "networkmanager" + "wheel" + "jellyfin" + ]; openssh.authorizedKeys.keys = sshKeys; }; security.sudo.wheelNeedsPassword = false; @@ -178,7 +182,7 @@ in { }; }; - # "jellyfin.${domain}" = (reverseProxy 8096); + "jellyfin.antoinevaure.fr" = (reverseProxy 8096); # "sonarr.${domain}" = (reverseProxy 8989); # "radarr.${domain}" = (reverseProxy 7878); # "qbittorrent.${domain}" = (reverseProxy qbittorrentPort); @@ -244,5 +248,7 @@ in { defaults.email = "contact@antoinevaure.fr"; }; + services.jellyfin.enable = true; + system.stateVersion = "24.11"; }