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

@ -25,24 +25,23 @@ let
comment = "Browse files";
};
ghosttyDesktopOverride = pkgs.makeDesktopItem {
name = "com.mitchellh.ghostty";
ptyxisDesktopOverride = pkgs.makeDesktopItem {
name = "org.gnome.Ptyxis";
desktopName = "Terminal";
genericName = "Terminal Emulator";
exec = "ghostty";
icon = "com.mitchellh.ghostty";
exec = "ptyxis";
icon = "org.gnome.Ptyxis";
categories = [
"System"
"TerminalEmulator"
"Utility"
];
terminal = false;
comment = "Fast GPU-accelerated terminal";
};
in
{
environment.systemPackages = lib.mkAfter [
(lib.hiPrio thunarDesktopOverride)
(lib.hiPrio ghosttyDesktopOverride)
(lib.hiPrio ptyxisDesktopOverride)
];
}