mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-11 01:18:39 +00:00
16 lines
222 B
Nix
16 lines
222 B
Nix
{pkgs, ...}: {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
keybind = [
|
|
"shift+enter=text:\\n"
|
|
];
|
|
};
|
|
};
|
|
|
|
home.packages = [
|
|
pkgs.ghostty
|
|
];
|
|
}
|