mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
20 lines
400 B
Nix
20 lines
400 B
Nix
{kittywitch, ...}: {
|
|
programs.wofi = {
|
|
enable = true;
|
|
settings = {
|
|
style = let
|
|
template = kittywitch.sassTemplate {
|
|
name = "wofi-style";
|
|
src = ./wofi.sass;
|
|
};
|
|
in
|
|
template.source;
|
|
insensitive = true;
|
|
allow_images = true;
|
|
hide_scroll = true;
|
|
width = "25%";
|
|
mode = "dmenu";
|
|
prompt = "";
|
|
};
|
|
};
|
|
}
|