nix-config/modules/niri/fuzzel.conf.nix
2024-07-29 23:13:03 +02:00

23 lines
634 B
Nix

{ lib, config, ... }: let
inherit (lib.strings) concatStrings;
inherit (config) theme;
in {
main = {
font = "FiraCodeNerdFont:size=18";
icons-enabled = false;
terminal = "alacritty -e";
list-executables-in-path = true;
};
colors = {
background = concatStrings [ theme.base "ee" ];
text = concatStrings [ theme.text "ff" ];
match = concatStrings [ theme.gold "ff" ];
selection = concatStrings [ theme.highlight-med "ee" ];
selection-text = concatStrings [ theme.text "ff" ];
selection-match = concatStrings [ theme.gold "ff" ];
};
border = {
width = 0;
radius = 8;
};
}