fix(terminal): default to alacritty
All checks were successful
/ check (nvimDev) (push) Successful in 5s
/ check (nvimHeadless) (push) Successful in 3s
/ check (nvimNoBundledBins) (push) Successful in 4s
/ check (nvimNoLsp) (push) Successful in 4s
/ check (nvimNoTSGrammars) (push) Successful in 4s
/ check (treefmt) (push) Successful in 2s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 4s

Wezterm is broken in current nixpkgs unstable and stable due to a
fractional scaling issue in wayland.
This commit is contained in:
Jalil David Salamé Messina 2025-01-15 22:44:23 +01:00
parent d1d337451e
commit fde1be66d9
Signed by: jalil
GPG key ID: F016B9E770737A0B
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"