Files
nixos-blueprint/modules/home/programs/terminal/ghostty.nix
unexplrd 1cdc75a57a updet
2025-02-27 17:16:25 +02:00

22 lines
362 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.terminal.ghostty;
in {
options = {
terminal.ghostty.enable = mkEnableOption "enable ghostty terminal";
};
config = mkIf cfg.enable {
programs.ghostty = {
enable = true;
settings = {
gtk-single-instance = true;
window-decoration = "server";
};
};
};
}