diff --git a/common/home.nix b/common/home.nix index ade2293b..b50c4073 100644 --- a/common/home.nix +++ b/common/home.nix @@ -15,6 +15,7 @@ ./goread.nix ./ncmpcpp.nix ./zellij.nix + ./kitty.nix ../modules ] ++ lib.optionals device.isLinux [../linux]; diff --git a/common/kitty.nix b/common/kitty.nix new file mode 100644 index 00000000..c72ef91c --- /dev/null +++ b/common/kitty.nix @@ -0,0 +1,17 @@ +{pkgs, ...}: { + programs.kitty = { + enable = true; + font = { + name = "Hasklug Nerd Font Mono"; + size = 13; + }; + settings = { + background_opacity = "0"; + background_tint = "0.8"; + background_color = "#0000000"; + shell = "${pkgs.fish}/bin/fish"; + }; + shellIntegration.enableFishIntegration = true; + theme = "Catppuccin-Mocha"; + }; +}