mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:43:55 -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
42 lines
853 B
Nix
42 lines
853 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.alacritty.enable {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
colors = {
|
|
draw_bold_text_with_bright_colors = true;
|
|
|
|
primary = {
|
|
background = "${config.ar.home.theme.colors.background}";
|
|
foreground = "${config.ar.home.theme.colors.text}";
|
|
};
|
|
|
|
transparent_background_colors = true;
|
|
};
|
|
|
|
font = {
|
|
normal = {
|
|
family = "UbuntuSans Nerd Font";
|
|
style = "Regular";
|
|
};
|
|
|
|
size = config.gtk.font.size + 1;
|
|
};
|
|
|
|
selection.save_to_clipboard = true;
|
|
|
|
window = {
|
|
blur = true;
|
|
decorations = "Full";
|
|
dynamic_padding = true;
|
|
opacity = 0.8;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|