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 /modules | |
| parent | 591ad8392cb4af102e2556e112bb27df4f9e097c (diff) | |
| download | nixos-config-39cd607e8a1b7b0830a3feb93907c0ba8fba8a60.tar.gz nixos-config-39cd607e8a1b7b0830a3feb93907c0ba8fba8a60.zip | |
modules/sets: Replace URxvt with Alacritty
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/sets.nix | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
