mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:53:54 -05:00
25 lines
564 B
Nix
25 lines
564 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 = "${config.ar.home.theme.colors.background}";
|
||
|
background_opacity = "0.8";
|
||
|
foreground = "${config.ar.home.theme.colors.text}";
|
||
|
notify_on_cmd_finish = "unfocused 10.0 command ${lib.getExe pkgs.libnotify} \"Job Finished with Status: %s\" %c";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|