Replace wezterm with kitty
This commit is contained in:
parent
c17f5d2f64
commit
ef9d501d9b
|
@ -2,11 +2,11 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./kitty.nix
|
||||
./messaging.nix
|
||||
./cloud.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
wezterm
|
||||
firefox
|
||||
bitwarden
|
||||
];
|
||||
|
|
14
nixos/home-manager/packages/gui/kitty.nix
Normal file
14
nixos/home-manager/packages/gui/kitty.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue