19 lines
291 B
Nix
19 lines
291 B
Nix
{
|
|
config,
|
|
lib,
|
|
perSystem,
|
|
...
|
|
}: {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
package = perSystem.ghostty.ghostty;
|
|
settings = {
|
|
gtk-single-instance = true;
|
|
window-decoration = "client";
|
|
keybind = [
|
|
"ctrl+shift+f=close_surface"
|
|
];
|
|
};
|
|
};
|
|
}
|