21 lines
305 B
Nix
21 lines
305 B
Nix
{pkgs, ...}:
|
|
{
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
include = "${./green.ini}";
|
|
|
|
font = "Iosevka Nerd Font Propo:size=16";
|
|
|
|
width = 60;
|
|
lines = 15;
|
|
};
|
|
border = {
|
|
width = 3;
|
|
radius = 15;
|
|
};
|
|
};
|
|
};
|
|
}
|