diff --git a/platforms/nixos/modules/nmasur/presets/services/arr/arr.nix b/platforms/nixos/modules/nmasur/presets/services/arr/arr.nix index 7ac240dd..0546fac7 100644 --- a/platforms/nixos/modules/nmasur/presets/services/arr/arr.nix +++ b/platforms/nixos/modules/nmasur/presets/services/arr/arr.nix @@ -71,7 +71,7 @@ in bazarr = { enable = true; }; - jellyseerr.enable = true; + seerr.enable = true; prowlarr.enable = true; sabnzbd = { enable = true; @@ -244,7 +244,7 @@ in handle = [ { handler = "reverse_proxy"; - upstreams = [ { dial = "localhost:${builtins.toString config.services.jellyseerr.port}"; } ]; + upstreams = [ { dial = "localhost:${builtins.toString config.services.seerr.port}"; } ]; } ]; } diff --git a/platforms/nixos/modules/nmasur/presets/services/grafana/grafana.nix b/platforms/nixos/modules/nmasur/presets/services/grafana/grafana.nix index e66d10d5..4eb15f61 100644 --- a/platforms/nixos/modules/nmasur/presets/services/grafana/grafana.nix +++ b/platforms/nixos/modules/nmasur/presets/services/grafana/grafana.nix @@ -786,7 +786,7 @@ in { matcher = { id = "byName"; - options = "localhost:${builtins.toString config.services.jellyseerr.port}"; + options = "localhost:${builtins.toString config.services.seerr.port}"; }; properties = [ { diff --git a/platforms/nixos/modules/nmasur/presets/services/openssh.nix b/platforms/nixos/modules/nmasur/presets/services/openssh.nix index 90251939..1bdd0e29 100644 --- a/platforms/nixos/modules/nmasur/presets/services/openssh.nix +++ b/platforms/nixos/modules/nmasur/presets/services/openssh.nix @@ -3,6 +3,7 @@ { config, lib, + pkgs, ... }: @@ -46,6 +47,9 @@ in ) cfg.publicKeys; # Add terminfo for SSH from popular terminal emulators - environment.enableAllTerminfo = true; + environment.systemPackages = [ + pkgs.ghostty.terminfo + pkgs.kitty.terminfo + ]; }; }