mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -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
36 lines
991 B
Nix
36 lines
991 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.fuzzel.enable {
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
border = {
|
|
radius = 10;
|
|
width = 2;
|
|
};
|
|
|
|
main = {
|
|
font = "UbuntuSansMono Nerd Font:size=${toString config.gtk.font.size}";
|
|
icon-theme = "${config.gtk.iconTheme.name}";
|
|
layer = "overlay";
|
|
lines = 3;
|
|
terminal = lib.getExe config.ar.home.defaultApps.terminal;
|
|
width = 36;
|
|
};
|
|
|
|
colors = {
|
|
background = "${config.ar.home.theme.colors.background}CC";
|
|
border = "${config.ar.home.theme.colors.primary}EE";
|
|
selection = "${config.ar.home.theme.colors.background}FF";
|
|
selection-match = "${config.ar.home.theme.colors.primary}FF";
|
|
selection-text = "${config.ar.home.theme.colors.secondary}FF";
|
|
text = "${config.ar.home.theme.colors.text}FF";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|