nixos/modules/features/tiling/fuzzel.nix
KnightArtorias c19785231e Fuzzel rice
2026-05-23 11:25:52 -04:00

34 lines
714 B
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
flake.nixosModules.fuzzel = { pkgs, ... }: {
environment.systemPackages = [ pkgs.fuzzel ];
environment.etc."xdg/fuzzel/fuzzel.ini".text = ''
[main]
font=JetBrainsMono Nerd Font:size=13
prompt=
line-height=28
fields=filename,name,generic
width=40
horizontal-pad=18
vertical-pad=12
inner-pad=8
image-size-ratio=0.5
[border]
width=2
radius=11
[colors]
background=24283be6
text=c0caf5ff
prompt=a9b1d6ff
placeholder=565f89ff
input=c0caf5ff
match=a98bc7ff
selection=343b58ff
selection-text=ffffffff
selection-match=b4b2deff
border=734fa5ff
'';
};
}