NixOS and Home Manager config

feat: kitty

nel.pet 7df05e66 1ae1a379

verified
+90
+1
modules/home/default.nix
··· 5 5 ./git.nix 6 6 ./helix/default.nix 7 7 ./i18n.nix 8 + ./kitty/default.nix 8 9 ./vscode.nix 9 10 ./ssh.nix 10 11 ./nix.nix
+11
modules/home/kitty/default.nix
··· 1 + { pkgs, inputs, ... }: { 2 + home.packages = [ 3 + (inputs.wrappers.lib.wrapPackage { 4 + inherit pkgs; 5 + package = pkgs.kitty; 6 + flags = { 7 + "--config" = ./kitty.conf; 8 + }; 9 + }) 10 + ]; 11 + }
+78
modules/home/kitty/kitty.conf
··· 1 + 2 + ## Theme 3 + ## name: Catppuccin Kitty Mocha 4 + ## author: Catppuccin Org 5 + ## license: MIT 6 + ## upstream: https://github.com/catppuccin/kitty/blob/main/themes/mocha.conf 7 + ## blurb: Soothing pastel theme for the high-spirited! 8 + 9 + # The basic colors 10 + foreground #cdd6f4 11 + background #1e1e2e 12 + selection_foreground #1e1e2e 13 + selection_background #f5e0dc 14 + 15 + # Cursor colors 16 + cursor #f5e0dc 17 + cursor_text_color #1e1e2e 18 + 19 + # URL underline color when hovering with mouse 20 + url_color #f5e0dc 21 + 22 + # Kitty window border colors 23 + active_border_color #b4befe 24 + inactive_border_color #6c7086 25 + bell_border_color #f9e2af 26 + 27 + # OS Window titlebar colors 28 + wayland_titlebar_color system 29 + macos_titlebar_color system 30 + 31 + # Tab bar colors 32 + active_tab_foreground #11111b 33 + active_tab_background #cba6f7 34 + inactive_tab_foreground #cdd6f4 35 + inactive_tab_background #181825 36 + tab_bar_background #11111b 37 + 38 + # Colors for marks (marked text in the terminal) 39 + mark1_foreground #1e1e2e 40 + mark1_background #b4befe 41 + mark2_foreground #1e1e2e 42 + mark2_background #cba6f7 43 + mark3_foreground #1e1e2e 44 + mark3_background #74c7ec 45 + 46 + # The 16 terminal colors 47 + 48 + # black 49 + color0 #45475a 50 + color8 #585b70 51 + 52 + # red 53 + color1 #f38ba8 54 + color9 #f38ba8 55 + 56 + # green 57 + color2 #a6e3a1 58 + color10 #a6e3a1 59 + 60 + # yellow 61 + color3 #f9e2af 62 + color11 #f9e2af 63 + 64 + # blue 65 + color4 #89b4fa 66 + color12 #89b4fa 67 + 68 + # magenta 69 + color5 #f5c2e7 70 + color13 #f5c2e7 71 + 72 + # cyan 73 + color6 #94e2d5 74 + color14 #94e2d5 75 + 76 + # white 77 + color7 #bac2de 78 + color15 #a6adc8