aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/ghostty.nix
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2026-06-23 02:56:12 +0200
committerSilas Schöffel <sils@sils.li>2026-06-23 02:56:12 +0200
commit0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1 (patch)
tree978f54918d4cecb5af209f1e0655fc227c6d9987 /modules/hm/sils/ghostty.nix
parentuser: rename to jaki (diff)
downloadnix-config-0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1.zip
treewide: rename paths to jaki
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;
- };
- };
-}