Files
nix-dotfiles/home-manager/modules/ghostty.nix
2025-07-16 20:05:09 +00:00

16 lines
222 B
Nix

{pkgs, ...}: {
programs.ghostty = {
enable = true;
enableZshIntegration = true;
settings = {
keybind = [
"shift+enter=text:\\n"
];
};
};
home.packages = [
pkgs.ghostty
];
}