17 lines
257 B
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";
|
|
};
|
|
};
|
|
};
|
|
}
|