nix-config/modules/wm/fuzzel/default.nix

24 lines
463 B
Nix

{ pkgs, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
terminal = "${pkgs.wezterm}/bin/wezterm start -- ";
layer = "overlay";
use-bold = true;
icon-theme = "Reversal-dark";
width = 70;
tabs = 2;
horizontal-pad = 10;
vertical-pad = 10;
inner-pad = 5;
line-height = 4;
};
colors = {
background = "0f0b15";
};
};
};
}