Replace wezterm with kitty

This commit is contained in:
Evie Litherland-Smith 2023-04-01 12:07:19 +01:00
parent c17f5d2f64
commit ef9d501d9b
2 changed files with 15 additions and 1 deletions

View file

@ -2,11 +2,11 @@
{
imports = [
./kitty.nix
./messaging.nix
./cloud.nix
];
home.packages = with pkgs; [
wezterm
firefox
bitwarden
];

View file

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
package = with pkgs; (nerdfonts.override { fonts = [ "FiraCode" ]; });
name = "Fira Code Nerd Font";
size = 14;
};
settings = { background_opacity = "0.90"; };
theme = "Catppuccin-Macchiato";
};
}