nix-configs/modules/desktop/home/fuzzel.nix
2026-01-02 04:54:38 +01:00

28 lines
588 B
Nix

{ lib, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
font = lib.mkForce "Departure Mono:size=13";
terminal = "kitty";
lines = 15;
width = 50;
horizontal-pad = 20;
vertical-pad = 12;
};
colors = {
background = lib.mkForce "282828cf";
match = lib.mkForce "d65d0eff";
selection-match = lib.mkForce "fe8019ff";
border = lib.mkForce "bab9e5ff";
};
border = {
radius = 10;
selection-radius = 3;
width = 3;
};
};
};
}