basically i’m trying to configure kitty with home-manager but the background_opacity option is not working
programs.kitty = {
enable = true;
background_opacity = 0.5;
confirm_os_window_close = false;
};
error:
… while evaluating a branch condition
at /nix/store/22r7q7s9552gn1vpjigkbhfgcvhsrz68-source/lib/lists.nix:125:9:
124| fold’ = n:
125| if n == len
| ^
126| then nul
… while calling the 'length' builtin
at /nix/store/22r7q7s9552gn1vpjigkbhfgcvhsrz68-source/lib/lists.nix:123:13:
122| let
123| len = length list;
| ^
124| fold' = n:
(stack trace truncated; use '--show-trace' to show the full, detailed trace)
error: The option `programs.kitty.background_opacity' does not exist. Definition values:
- In `/nix/store/4l2s52hmk48dnf0fhyj4rkji4mmqi6kl-source/home.nix': 0.5
anyone knows how can i configure that correctly?