Files
nixos-blueprint/modules/home/programs/ghostty.nix
T
2025-12-31 15:03:16 +02:00

18 lines
272 B
Nix

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