mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-06 06:58:41 +00:00
19 lines
289 B
Nix
19 lines
289 B
Nix
{pkgs, ...}: {
|
|
programs.ghostty = {
|
|
enable = pkgs.stdenv.isLinux;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
keybind = [
|
|
"shift+enter=text:\\n"
|
|
];
|
|
};
|
|
};
|
|
|
|
home.packages =
|
|
if pkgs.stdenv.isLinux
|
|
then [
|
|
pkgs.ghostty
|
|
]
|
|
else [];
|
|
}
|