Files
nixos-blueprint/modules/hm-programs/ghostty.nix
T
2025-12-25 23:41:24 +02:00

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"
];
};
};
}