mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
24 lines
518 B
Nix
24 lines
518 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
font = "NotoSansM Nerd Font Regular";
|
|
icon-theme = "Papirus-Dark";
|
|
layer = "overlay";
|
|
terminal = "${pkgs.alacritty}/bin/alacritty -e";
|
|
};
|
|
border = { width = 2; };
|
|
colors = {
|
|
background = "#232634CC";
|
|
selection = "#232634FF";
|
|
selection-match = "#e78284FF";
|
|
selection-text = "#f4b8e4FF";
|
|
text = "#fafafaFF";
|
|
};
|
|
};
|
|
};
|
|
}
|