Added KiTTY

This commit is contained in:
Chloe Hawthorne
2025-01-01 18:30:09 +11:00
parent 95dc92030a
commit a794217908
2 changed files with 14 additions and 3 deletions

View File

@@ -42,8 +42,8 @@
username = "chloe";
homeDirectory = "/home/chloe";
packages = with pkgs; [
alacritty
alacritty-theme
kitty
kitty-themes
zsh-powerlevel10k
cozette
yt-dlp
@@ -54,7 +54,7 @@
};
programs = {
alacritty = import ./alacritty.nix { inherit pkgs; };
kitty = import ./kitty.nix { inherit pkgs; };
# ZSH Config
zsh = {

11
home-manager/kitty.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, ... }: {
enable = true;
font.name = "CozetteVector";
font.size = 11.0;
themeFile = "Monokai_Pro";
settings = {
linux_display_server = "x11";
};
}