mirror of
https://github.com/heyitschloehawthorne/nix-config.git
synced 2025-12-15 10:48:39 +11:00
Added KiTTY
This commit is contained in:
@@ -42,8 +42,8 @@
|
|||||||
username = "chloe";
|
username = "chloe";
|
||||||
homeDirectory = "/home/chloe";
|
homeDirectory = "/home/chloe";
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
alacritty
|
kitty
|
||||||
alacritty-theme
|
kitty-themes
|
||||||
zsh-powerlevel10k
|
zsh-powerlevel10k
|
||||||
cozette
|
cozette
|
||||||
yt-dlp
|
yt-dlp
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
alacritty = import ./alacritty.nix { inherit pkgs; };
|
kitty = import ./kitty.nix { inherit pkgs; };
|
||||||
|
|
||||||
# ZSH Config
|
# ZSH Config
|
||||||
zsh = {
|
zsh = {
|
||||||
|
|||||||
11
home-manager/kitty.nix
Normal file
11
home-manager/kitty.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ pkgs, ... }: {
|
||||||
|
|
||||||
|
enable = true;
|
||||||
|
font.name = "CozetteVector";
|
||||||
|
font.size = 11.0;
|
||||||
|
themeFile = "Monokai_Pro";
|
||||||
|
settings = {
|
||||||
|
linux_display_server = "x11";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user