nixcfg/home/fuzzel/default.nix

24 lines
504 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2024-03-24 15:59:13 -04:00
programs.fuzzel = {
enable = true;
settings = {
main = {
font = "NotoSansM Nerd Font";
2024-03-24 15:59:13 -04:00
icon-theme = "breeze";
layer = "overlay";
terminal = "${pkgs.alacritty}/bin/alacritty -e";
};
border = { width = 2; };
colors = {
background = "#00000099";
selection = "#000000FF";
selection-match = "#FF0000FF";
selection-text = "#008000FF";
text = "#FFFFFFFF";
};
};
2024-03-24 15:59:13 -04:00
};
}