{ 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 ''; }; }