mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 14:23:55 -05:00
27 lines
526 B
Nix
27 lines
526 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.kitty.enable {
|
|
programs.kitty = {
|
|
enable = true;
|
|
|
|
font = {
|
|
name = "NotoSansM Nerd Font";
|
|
size = config.gtk.font.size;
|
|
};
|
|
|
|
settings = {
|
|
background_opacity = "0.8";
|
|
confirm_os_window_close = "0";
|
|
notify_on_cmd_finish = "unfocused 10.0 command ${lib.getExe pkgs.libnotify} \"Job Finished\"";
|
|
tab_bar_style = "powerline";
|
|
};
|
|
|
|
theme = "Adwaita dark";
|
|
};
|
|
};
|
|
}
|