config/users/pbsds/home/profiles/desktop/ghostty/default.nix

13 lines
331 B
Nix
Raw Normal View History

2025-01-09 00:50:07 +01:00
{ pkgs, ... }:
{
home.packages = [ pkgs.ghostty ];
home.file.".config/ghostty/config".source = ./ghosty.config;
home.file.".config/ghostty/config".force = true;
dconf.settings."org/gnome/desktop/default-applications/terminal" = {
/* exec = lib.getExe pkgs.ghostty; */
exec = "ghostty";
exec-arg = "-e";
};
}