This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/home-manager/kitty.nix

17 lines
257 B
Nix

{ config, lib, pkgs, user, ... }:
{
programs = {
kitty = {
enable = true;
theme = "Solarized Dark";
font = {
name = "DejaVu Sans Mono";
};
settings = {
tab_bar_style = "powerline";
};
};
};
}