nix-config/modules/niri/fuzzel.conf.nix
2025-02-28 19:32:44 +01:00

30 lines
722 B
Nix

{
lib,
config,
...
}: let
inherit (lib.strings) concatStrings;
inherit (config) theme;
in {
main = {
font = "FiraCodeNerdFont";
dpi-aware = true;
icons-enabled = false;
terminal = "alacritty -e";
prompt = "'󱄅 '";
};
colors = {
background = concatStrings [theme.surface "ee"];
prompt = concatStrings [theme.text "ff"];
input = concatStrings [theme.text "ff"];
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;
};
}