fix(terminal): default to alacritty #250

Merged
jalil merged 1 commit from use-alacritty into main 2025-01-15 22:48:39 +01:00
2 changed files with 2 additions and 3 deletions

View file

@ -17,7 +17,6 @@
inherit (unstablePkgs) inherit (unstablePkgs)
gitoxide gitoxide
jujutsu jujutsu
# wezterm
; ;
}; };

View file

@ -155,8 +155,8 @@ let
}; };
terminal = lib.mkOption { terminal = lib.mkOption {
description = "The terminal emulator to use."; description = "The terminal emulator to use.";
default = "wezterm"; default = "alacritty";
example = "alacritty"; example = "wezterm";
type = types.enum [ type = types.enum [
"wezterm" "wezterm"
"alacritty" "alacritty"