home: tmux: add hyperlinks support
Some checks failed
ci/woodpecker/push/check Pipeline failed

Somewhat unfortunate that those have to be enabled by force, but easy
enough to support.
This commit is contained in:
Bruno BELANYI 2024-03-07 15:44:17 +00:00
parent 3c24af71f5
commit 0221e61416

View file

@ -24,6 +24,8 @@ in
type = with types; attrsOf (types.submodule {
options = {
trueColor = my.mkDisableOption "24-bit (RGB) color support";
hyperlinks = my.mkDisableOption "hyperlinks through OSC8";
};
});
@ -103,6 +105,8 @@ in
# Force 24-bit color for each relevant $TERM
${mkFlags "trueColor" "RGB"}
# Force OSC8 hyperlinks for each relevant $TERM
${mkFlags "hyperlinks" "hyperlinks"}
'';
};
}