fix: replace enableAllTerminfo with specific terminfo packages

This commit is contained in:
Noah Masur
2026-05-30 13:55:26 -04:00
parent 8af595b62b
commit 5fd6593a92
3 changed files with 8 additions and 4 deletions
@@ -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}"; } ];
}
];
}
@@ -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 = [
{
@@ -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
];
};
}