From e2e044a8f41800cdc303f50ff48f252f6ab9caa8 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 18 May 2023 11:10:28 +0000 Subject: [PATCH] sxmo: switch terminal to kitty --- hosts/modules/gui/sxmo.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hosts/modules/gui/sxmo.nix b/hosts/modules/gui/sxmo.nix index 587fb4b6..02e81e50 100644 --- a/hosts/modules/gui/sxmo.nix +++ b/hosts/modules/gui/sxmo.nix @@ -81,10 +81,12 @@ in ''; }; sane.gui.sxmo.terminal = mkOption { - type = types.nullOr (types.enum [ "foot" "st" "vte" ]); - default = "st"; + # type = types.nullOr (types.enum [ "foot" "st" "vte" ]); + type = types.nullOr types.string; + default = "kitty"; 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. ''; }; };