mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
13 lines
274 B
Nix
13 lines
274 B
Nix
{pkgs, ...}: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
font.name = "IntoneMono Nerd Font";
|
|
settings = {
|
|
allow_remote_control = "no";
|
|
shell = "${pkgs.zsh}/bin/zsh";
|
|
wayland_titlebar_color = "background";
|
|
};
|
|
themeFile = "VSCode_Dark";
|
|
};
|
|
}
|