nixos-config/modules/workstation/home-manager/desktop/sway/fuzzel.nix

26 lines
568 B
Nix
Raw Normal View History

2024-08-14 22:01:06 +02:00
{ pkgs, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
terminal = "${pkgs.alacritty}/bin/alacritty -e";
font = "JetBrains Mono Nerd Font:size=12";
line-height = 20;
lines = 10;
horizontal-pad = 20;
width = 50;
image-size-ratio = 0;
};
colors = {
background = "2e3440ff";
text = "eceff4ff";
selection = "4c566aff";
border = "5e81acff";
selection-match = "d08770ff";
selection-text = "d8dee9ff";
};
};
};
}