15 lines
273 B
Nix
15 lines
273 B
Nix
{ ... }:
|
|
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
background-opacity = 0.9;
|
|
keybind = [
|
|
"performable:ctrl+c=copy_to_clipboard"
|
|
"performable:ctrl+v=paste_from_clipboard"
|
|
];
|
|
};
|
|
};
|
|
}
|