email update
This commit is contained in:
19
modules/home-manager/kitty/default.nix
Normal file
19
modules/home-manager/kitty/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "Iosevka" ]; })
|
||||
];
|
||||
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "Iosevka Nerd Font";
|
||||
size = 12;
|
||||
};
|
||||
shellIntegration = {
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
theme = "Catppuccin-Frappe";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user