Files
nixos-blueprint/modules/homePrograms/ghostty.nix
T
2026-05-11 10:15:54 +03:00

13 lines
228 B
Nix

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