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

41 lines
954 B
Nix

{ pkgs, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
terminal = "${pkgs.wezterm}/bin/wezterm start -- ";
layer = "overlay";
font = "VictorMono Nerd Font:weight=400:size=15";
use-bold = true;
icon-theme = "Reversal-dark";
width = 85;
tabs = 2;
minimal-lines = true;
lines = 10;
vertical-pad = 20;
inner-pad = 25;
image-size-ratio = 1;
};
colors = {
background = "0f0b15ff";
text = "ffffffff";
message = "bf8a9fff";
prompt = "807c9fff";
input = "ffffffff";
match = "c57fafff";
selection = "331531ff";
selection-match = "ffffffff";
selection-text = "c57fafff";
counter = "807c9fff";
border = "331531ff";
};
border = {
width = 2;
radius = 10;
selection-radius = 5;
};
};
};
}