sys-config/modules/home/desktopPrograms/ghostty/default.nix
2025-02-15 23:56:34 +01:00

14 lines
327 B
Nix

{ config, lib, ... }:
{
options.settings.programs.ghostty = {
enable = lib.mkEnableOption "enable ghostty terminal emulator";
};
config = lib.mkIf config.settings.programs.ghostty.enable {
programs.ghostty = {
enable = true;
enableFishIntegration = true;
installBatSyntax = true;
};
};
}