From fde1be66d97efbdd37debebdc58cac97aaca140d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Wed, 15 Jan 2025 22:44:23 +0100 Subject: [PATCH] fix(terminal): default to alacritty Wezterm is broken in current nixpkgs unstable and stable due to a fractional scaling issue in wayland. --- flake-modules/overlays.nix | 1 - home/options.nix | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/flake-modules/overlays.nix b/flake-modules/overlays.nix index 437797c..ae9b7cd 100644 --- a/flake-modules/overlays.nix +++ b/flake-modules/overlays.nix @@ -17,7 +17,6 @@ inherit (unstablePkgs) gitoxide jujutsu - # wezterm ; }; diff --git a/home/options.nix b/home/options.nix index 9b44f43..4334c16 100644 --- a/home/options.nix +++ b/home/options.nix @@ -155,8 +155,8 @@ let }; terminal = lib.mkOption { description = "The terminal emulator to use."; - default = "wezterm"; - example = "alacritty"; + default = "alacritty"; + example = "wezterm"; type = types.enum [ "wezterm" "alacritty"