Files
nixos-blueprint/modules/homePrograms/ghostty.nix
T
2026-05-11 12:55:45 +03:00

13 lines
224 B
Nix

{
programs.ghostty.enable = true;
programs.ghostty = {
settings = {
gtk-single-instance = true;
window-decoration = "client";
keybind = [
"ctrl+shift+f=close_surface"
];
};
};
}