18 lines
384 B
Nix
18 lines
384 B
Nix
{pkgs, ...}: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "Hasklug Nerd Font Mono";
|
|
size = 13;
|
|
};
|
|
settings = {
|
|
background_opacity = "0";
|
|
background_tint = "0.8";
|
|
background_color = "#0000000";
|
|
shell = "${pkgs.fish}/bin/fish";
|
|
};
|
|
shellIntegration.enableFishIntegration = true;
|
|
theme = "Catppuccin-Mocha";
|
|
};
|
|
}
|