Files
nixos-blueprint/modules/homePrograms/ghostty.nix
T
2026-01-24 22:57:18 +02:00

19 lines
306 B
Nix

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