sxmo: switch terminal to kitty

This commit is contained in:
Colin 2023-05-18 11:10:28 +00:00
parent bacc17e333
commit e2e044a8f4

View File

@ -81,10 +81,12 @@ in
''; '';
}; };
sane.gui.sxmo.terminal = mkOption { sane.gui.sxmo.terminal = mkOption {
type = types.nullOr (types.enum [ "foot" "st" "vte" ]); # type = types.nullOr (types.enum [ "foot" "st" "vte" ]);
default = "st"; type = types.nullOr types.string;
default = "kitty";
description = '' description = ''
name of terminal to use for sxmo_terminal.sh name of terminal to use for sxmo_terminal.sh.
foot, st, and vte have special integrations in sxmo, but any will work.
''; '';
}; };
}; };