nix-config/modules/niri/fuzzel.conf.nix
2025-01-15 00:11:50 +01:00

26 lines
733 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;
};
}