aboutsummaryrefslogtreecommitdiff
path: root/util/modules/home/kitty.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-05-12 20:12:49 -0700
committerCaroline Larimore <caroline@larimo.re>2024-05-12 20:12:49 -0700
commit31fa816373038e5fad807131a8526103bd005a6f (patch)
tree26a799d7d17b78fb794362dd3aa5ef378b05f427 /util/modules/home/kitty.nix
parentc7bdfbb27406d90f50e5d46908e0a4e1f96096b2 (diff)
Delete old duplicate config from util
(i have no clue how that even happened?)
Diffstat (limited to 'util/modules/home/kitty.nix')
-rw-r--r--util/modules/home/kitty.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/util/modules/home/kitty.nix b/util/modules/home/kitty.nix
deleted file mode 100644
index 852f554..0000000
--- a/util/modules/home/kitty.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ config, ... }:
-
-{
- programs.kitty = {
- enable = true;
-
- font = { name = "monospace"; size = 8.0; };
-
- settings = let c = config.theme.colors; in {
- color0 = "#${c.black}";
- color1 = "#${c.red}";
- color2 = "#${c.green}";
- color3 = "#${c.yellow}";
- color4 = "#${c.blue}";
- color5 = "#${c.magenta}";
- color6 = "#${c.cyan}";
- color7 = "#${c.white}";
-
- color8 = "#${c.brightBlack}";
- color9 = "#${c.brightRed}";
- color10 = "#${c.brightGreen}";
- color11 = "#${c.brightYellow}";
- color12 = "#${c.brightBlue}";
- color13 = "#${c.brightMagenta}";
- color14 = "#${c.brightCyan}";
- color15 = "#${c.brightWhite}";
- };
-
- shellIntegration = {
- mode = "no-cursor";
- enableBashIntegration = true;
- };
-
- extraConfig = ''
- background_opacity 0.8
- confirm_os_window_close 0
- '';
- };
-}