diff options
Diffstat (limited to 'modules/programs')
| -rw-r--r-- | modules/programs/ghostty.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/programs/ghostty.nix b/modules/programs/ghostty.nix new file mode 100644 index 0000000..10b366f --- /dev/null +++ b/modules/programs/ghostty.nix @@ -0,0 +1,18 @@ +{ + flake.modules.homeManager.ghostty = + { ... }: + { + programs.ghostty = { + enable = true; + settings = { + font-family = "JetBrains Mono"; + font-size = 13; + font-thicken = true; + theme = "Gruvbox Dark"; + background = "#000000"; + window-decoration = false; + copy-on-select = "clipboard"; + }; + }; + }; +} |
