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

24 lines
469 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 = 85;
tabs = 2;
# horizontal-pad = 10;
vertical-pad = 25;
# inner-pad = 5;
# line-height = 4;
};
colors = {
background = "0f0b15";
};
};
};
}