Files
nixos-conf/home-manager/packages/fuzzel/fuzzel.nix

32 lines
607 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 = "#e391e2f2";
text = "545454ff";
selection = "545454ff";
selection-text = "e391e2f2";
border = "6e3a6dff";
};
border = {
width = "3";
selection-radius = "3";
};
};
};
}