35 lines
675 B
Nix
35 lines
675 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
icons-enabled = "no";
|
|
font = "Maple Mono NF:size=12";
|
|
dpi-aware = "no";
|
|
horizontal-pad = 8;
|
|
vertical-pad = 8;
|
|
inner-pad = 8;
|
|
width = 64;
|
|
};
|
|
|
|
colors = {
|
|
background = "23213688";
|
|
text = "e0def4ff";
|
|
prompt = "e0def4ff";
|
|
input = "e0def4ff";
|
|
match = "8f66c6ff";
|
|
selection = "eb6f92ff";
|
|
selection-text = "232136ff";
|
|
selection-match = "232136ff";
|
|
border = "8f66c6ff";
|
|
};
|
|
|
|
border = {
|
|
width = 2;
|
|
radius = 2;
|
|
};
|
|
};
|
|
};
|
|
}
|