mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:03:55 -05:00
Aly Raffauf
76e6626187
* removed gtk and icon theme option abstractions * home/theme: remove cursorTheme options * rustboro/home: migrate cursor theme overrides * home/theme: use config.gtk.font instead of options.nix abstractions * home/them: dark mode/light mode check for icons * home/theme: remove terminalFont options * home: move home.themes.colors.darkMode to home.themes.darkMode * home/them: improve gnome font settings * waybar: stay dark even when in light mode
37 lines
994 B
Nix
37 lines
994 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.fuzzel.enable {
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
border = {
|
|
radius = 10;
|
|
width = 2;
|
|
};
|
|
|
|
main = {
|
|
font = "NotoSansM 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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|