Files
flake/modules/gui/ghostty.nix
2024-11-25 12:18:42 +01:00

19 lines
474 B
Nix

{ghostty, ...}: let
pkg = ghostty.packages.x86_64-linux.default;
in {
xdg.configFile."ghostty/config".source = ./ghostty.config;
programs.zsh.initExtra = ''
# load ghostty integration (responsible for OSC 133 aka sementic prompts)
if [[ $TERM != "dumb" ]]; then
autoload -Uz -- ${pkg}/share/ghostty/shell-integration/zsh/ghostty-integration
ghostty-integration
unfunction ghostty-integration
fi
'';
home.packages = [
pkg
];
}