mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-26 15:11:55 -05:00
21 lines
509 B
Nix
21 lines
509 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.fuzzel = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
main = {
|
||
|
font = "Noto Nerd Font Sans Mono";
|
||
|
icon-theme = "breeze";
|
||
|
layer = "overlay";
|
||
|
terminal = "${pkgs.alacritty}/bin/alacritty -e";
|
||
|
};
|
||
|
colors.background = "#00000099";
|
||
|
colors.selection = "#000000FF";
|
||
|
colors.selection-match = "#FF0000FF";
|
||
|
colors.selection-text = "#008000FF";
|
||
|
colors.text = "#FFFFFFFF";
|
||
|
};
|
||
|
};
|
||
|
}
|