summaryrefslogtreecommitdiff
path: root/users/seth/programs/ghostty.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-02-04 18:19:20 -0500
committerSeth Flynn <[email protected]>2025-02-04 18:19:20 -0500
commita416852a9aa03ca88d5ae7606b74139d13ef406c (patch)
tree8a7299d757adb54cb91887dc4cea18bb5d48067f /users/seth/programs/ghostty.nix
parent37ae8cc30b9c93caa43504aaf0b66b4fd5500882 (diff)
seth/ghostty: configure more
Diffstat (limited to 'users/seth/programs/ghostty.nix')
-rw-r--r--users/seth/programs/ghostty.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/users/seth/programs/ghostty.nix b/users/seth/programs/ghostty.nix
new file mode 100644
index 0000000..0bf480b
--- /dev/null
+++ b/users/seth/programs/ghostty.nix
@@ -0,0 +1,27 @@
+{ config, lib, ... }:
+
+let
+ cfg = config.seth.programs.ghostty;
+in
+
+{
+ options.seth.programs.ghostty = {
+ enable = lib.mkEnableOption "Ghostty configuration" // {
+ default = config.seth.desktop.enable;
+ defaultText = lib.literalExample "config.seth.desktop.enable";
+ };
+ };
+
+ config = lib.mkIf cfg.enable {
+ programs.ghostty = {
+ enable = true;
+
+ enableBashIntegration = true;
+ enableFishIntegration = true;
+
+ settings = {
+ bold-is-bright = true;
+ };
+ };
+ };
+}