Compare commits

..

2 Commits

Author SHA1 Message Date
John Lancaster 3f04a19cee ghosttyCmd 2026-03-28 17:24:01 -05:00
John Lancaster c61f15b431 added discord pkg to desktop 2026-03-28 17:23:41 -05:00
2 changed files with 10 additions and 3 deletions
+1
View File
@@ -8,6 +8,7 @@
vscode vscode
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
discord
mangohud mangohud
sublime4 sublime4
proton-vpn proton-vpn
+9 -3
View File
@@ -58,11 +58,16 @@
}; };
# https://github.com/ghostty-org/ghostty/discussions/3763#discussioncomment-11699970 # https://github.com/ghostty-org/ghostty/discussions/3763#discussioncomment-11699970
xdg.desktopEntries."com.mitchellh.ghostty" = { xdg.desktopEntries."com.mitchellh.ghostty" =
let
ghosttyCmd = "nixGLMesa ${lib.getExe pkgs.ghostty}";
in
{
name = "Ghostty"; name = "Ghostty";
type = "Application"; type = "Application";
comment = "A terminal emulator"; comment = "A terminal emulator";
exec = "nixGLMesa ghostty"; # exec = "nixGLMesa ghostty";
exec = ghosttyCmd;
icon = "com.mitchellh.ghostty"; icon = "com.mitchellh.ghostty";
terminal = false; terminal = false;
startupNotify = true; startupNotify = true;
@@ -79,7 +84,8 @@
actions = { actions = {
new-window = { new-window = {
name = "New Window"; name = "New Window";
exec = "nixGLMesa ghostty"; exec = ghosttyCmd;
# exec = "nixGLMesa ghostty";
}; };
}; };
}; };