26 lines
568 B
Nix
26 lines
568 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
terminal = "${pkgs.alacritty}/bin/alacritty -e";
|
|
font = "JetBrains Mono Nerd Font:size=12";
|
|
line-height = 20;
|
|
lines = 10;
|
|
horizontal-pad = 20;
|
|
width = 50;
|
|
image-size-ratio = 0;
|
|
};
|
|
colors = {
|
|
background = "2e3440ff";
|
|
text = "eceff4ff";
|
|
selection = "4c566aff";
|
|
border = "5e81acff";
|
|
selection-match = "d08770ff";
|
|
selection-text = "d8dee9ff";
|
|
};
|
|
};
|
|
};
|
|
}
|