nixcfg/homeManagerModules/apps/fuzzel/default.nix
Aly Raffauf 9daf1a46a5
home: noto sans -> ubuntu sans (#75)
* 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
2024-08-03 21:07:55 -04:00

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";
};
};
};
};
}