12 lines
178 B
Nix
12 lines
178 B
Nix
{ pkgs, ... }: {
|
|
programs.wofi = {
|
|
enable = true;
|
|
settings = {
|
|
show = "drun";
|
|
width = "40%";
|
|
height = "20%";
|
|
allow_markup = true;
|
|
};
|
|
};
|
|
}
|