From c7366e129f51b24726a804ce974de51fe49a90a0 Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Fri, 18 Apr 2025 15:21:08 +0200 Subject: ghostty: init --- modules/hm/sils/ghostty.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/hm/sils/ghostty.nix (limited to 'modules/hm/sils/ghostty.nix') diff --git a/modules/hm/sils/ghostty.nix b/modules/hm/sils/ghostty.nix new file mode 100644 index 0000000..cd871bc --- /dev/null +++ b/modules/hm/sils/ghostty.nix @@ -0,0 +1,15 @@ +{ + config, + lib, + ... +}: let + cfg = config.sils.ghostty; +in { + options.sils.ghostty.enable = lib.mkEnableOption "the ghostty terminal emulator"; + config = lib.mkIf cfg.enable { + programs.ghostty = { + enable = true; + enableZshIntegration = true; + }; + }; +} -- cgit v1.3.1