Skip to content

Commit 4ec430c

Browse files
committed
feat: add ghostty
1 parent 3d4d3d7 commit 4ec430c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

modules/home-manager/ghostty.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{ config, lib, ... }:
2+
let cfg = config.programs.ghostty.tokyonight;
3+
in {
4+
options.programs.ghostty.tokyonight = lib.tn.mkTokyonightOpt "tokyonight ghostty";
5+
config = lib.mkMerge [
6+
(lib.mkIf cfg.enable {
7+
programs.ghostty.settings.theme = "tokyonight_${cfg.style}";
8+
})
9+
];
10+
}

0 commit comments

Comments
 (0)