mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2026-01-15 16:43:06 +01:00
28 lines
588 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|