mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
Aly Raffauf
9daf1a46a5
* initial changeover * zed: adjust font sizes * waybar: fix missing pixels * waybar: set to mono font * zed: ui font 14 -> 16 * kitty: font gtk + 1 * alacritty: font gtk + 1 * rofi: use mono font * home/theme: use vegur serif font
27 lines
595 B
Nix
27 lines
595 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.kitty.enable {
|
|
programs.kitty = {
|
|
enable = true;
|
|
|
|
font = {
|
|
name = "UbuntuSansMono Nerd Font";
|
|
size = config.gtk.font.size + 1;
|
|
};
|
|
|
|
settings = {
|
|
background_opacity = "0.8";
|
|
confirm_os_window_close = "0";
|
|
notify_on_cmd_finish = "unfocused 10.0 command ${lib.getExe pkgs.libnotify} -i ${pkgs.kitty}/share/icons/hicolor/256x256/apps/kitty.png \"Job Finished\"";
|
|
tab_bar_style = "powerline";
|
|
};
|
|
|
|
theme = "Adwaita dark";
|
|
};
|
|
};
|
|
}
|