diff options
| author | Simon Parri <simonparri@ganzeria.com> | 2025-10-23 12:03:35 -0500 |
|---|---|---|
| committer | Simon Parri <simonparri@ganzeria.com> | 2025-10-23 12:03:35 -0500 |
| commit | 39cd607e8a1b7b0830a3feb93907c0ba8fba8a60 (patch) | |
| tree | 5acd98d6a742300dc3dee421ff7843c03fb52a45 | |
| parent | 591ad8392cb4af102e2556e112bb27df4f9e097c (diff) | |
| download | nixos-config-39cd607e8a1b7b0830a3feb93907c0ba8fba8a60.tar.gz nixos-config-39cd607e8a1b7b0830a3feb93907c0ba8fba8a60.zip | |
modules/sets: Replace URxvt with Alacritty
| -rw-r--r-- | hosts/bean/common.nix | 3 | ||||
| -rw-r--r-- | modules/sets.nix | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/hosts/bean/common.nix b/hosts/bean/common.nix index 5785ac9..b66b379 100644 --- a/hosts/bean/common.nix +++ b/hosts/bean/common.nix @@ -30,11 +30,12 @@ in sys.tools = true; www.browser = true; }; + this.sets.gui.terminalEmulator = pkgs.rxvt-unicode; + environment.systemPackages = with pkgs; [ emacs awesome jre - rxvt-unicode nethack sil-q ppsspp diff --git a/modules/sets.nix b/modules/sets.nix index efad7c6..8001d5b 100644 --- a/modules/sets.nix +++ b/modules/sets.nix @@ -54,6 +54,7 @@ in gui.usePicom = lib.mkEnableOption "picom package" // { default = true; }; gui.useEmoji = lib.mkEnableOption "emoji font package" // { default = true; }; de.useKeymapper = lib.mkEnableOption "keymapper" // { default = true; }; + gui.terminalEmulator = lib.mkPackageOption pkgs "terminal emulator" { default = "alacritty"; }; }; config = { @@ -136,9 +137,8 @@ in ]; gui.tools.minimal = [ autocutsel - rxvt-unicode unclutter-xfixes - ]; + ] ++ [cfg.gui.terminalEmulator]; gui.tools.full = [ arandr antimicrox |
