home-modules: add ghostty

This commit is contained in:
Veneficium 2025-02-15 23:49:00 +01:00
parent 2800e74f7e
commit e91968e2a1
3 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ 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;
};
};
}