This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-08-03 00:54:50 +00:00
|
|
|
{config, ...}: {
|
|
|
|
xdg = {
|
|
|
|
enable = true;
|
|
|
|
userDirs.enable = true;
|
|
|
|
cacheHome = "${config.home.homeDirectory}/.cache";
|
|
|
|
configHome = "${config.home.homeDirectory}/.config";
|
|
|
|
dataHome = "${config.home.homeDirectory}/.local/share";
|
2023-11-02 12:48:46 +00:00
|
|
|
desktopEntries.ghostty = {
|
|
|
|
name = "Ghostty";
|
|
|
|
type = "Application";
|
|
|
|
comment = "A terminal emulator";
|
|
|
|
exec = "/home/jolheiser/.local/share/ghostty/bin/ghostty";
|
|
|
|
icon = "com.mitchellh.ghostty";
|
|
|
|
categories = ["System" "TerminalEmulator" "Utility"];
|
|
|
|
startupNotify = true;
|
|
|
|
terminal = false;
|
|
|
|
#actions."new-window" = {
|
|
|
|
# name = "New Window";
|
|
|
|
# exec = "ghostty";
|
|
|
|
#};
|
|
|
|
};
|
2023-08-03 00:54:50 +00:00
|
|
|
};
|
|
|
|
}
|