chore(terminal): switch default terminal to ptyxis

This commit is contained in:
randogoth 2026-02-04 22:12:07 +02:00
parent a59facdb0a
commit 2f8f5e340b
6 changed files with 15 additions and 16 deletions

View file

@ -78,7 +78,7 @@
thunderbird # full-featured Mozilla e-mail client
# geary # default GNOME email client
# ptyxis # container aware GNOME terminal
# ghostty # GPU accelerated terminal emulator
# alacritty # GPU accelerated terminal emulator
# kitty # GPU accelerated terminal emulator
@ -111,8 +111,8 @@ home-manager switch --flake ~/.config/home-manager#$USER
home.sessionVariables = {
# you can change the default terminal and editor here
TERMINAL = "${pkgs.ghostty}/bin/ghostty";
DEFAULT_TERMINAL = "${pkgs.ghostty}/bin/ghostty";
TERMINAL = "${pkgs.ptyxis}/bin/ptyxis";
DEFAULT_TERMINAL = "${pkgs.ptyxis}/bin/ptyxis";
EDITOR = "micro";
DBX_CONTAINER_HOME_PREFIX = "$HOME/distrobox";
};