my-nixos-config/home-manager/modules/fuzzel.nix
2025-11-11 16:09:55 +01:00

27 lines
614 B
Nix

{ config, pkgs, ... }: {
programs.fuzzel.enable = true;
programs.fuzzel.settings = {
main = {
image-size-ratio = 1;
cache = "/dev/null";
};
colors = {
background = "#282828ff";
text = "#ebdbb2ff";
# prompt = "#d65d0eff";
prompt = "#458588ff";
placeholder = "#bdae93ff";
input = "#d5c4a1ff";
match = "#83a598ff";
selection = "#504945ff";
selection-text = "#fbf1c7ff";
selection-match = "#fabd2fff";
counter = "#928374ff";
border = "#d65d0eff";
};
border = {
width = 2;
radius = 0;
};
};
}