32 lines
606 B
Nix
32 lines
606 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
font = "Hack Nerd Font:size=12";
|
|
anchor = "top";
|
|
width = "20";
|
|
inner-pad = "15";
|
|
horizontal-pad = "30";
|
|
vertical-pad = "30";
|
|
lines = "10";
|
|
y-margin = "15";
|
|
};
|
|
colors = {
|
|
background = "2b3339f2";
|
|
text = "d3c6aaff";
|
|
selection = "d3c6aaff";
|
|
selection-text = "2b3339ff";
|
|
border = "7fbbb3ff";
|
|
};
|
|
border = {
|
|
width = "3";
|
|
selection-radius = "3";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|