aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/ghostty.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/ghostty.nix')
-rw-r--r--modules/hm/sils/ghostty.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/hm/sils/ghostty.nix b/modules/hm/sils/ghostty.nix
deleted file mode 100644
index cd871bc..0000000
--- a/modules/hm/sils/ghostty.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- 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;
- };
- };
-}