11 lines
179 B
Nix
11 lines
179 B
Nix
{ pkgs
|
|
, lib
|
|
, config
|
|
, ... }: with lib; mkIf config.passthrough.gui {
|
|
programs.wofi = {
|
|
enable = true;
|
|
settings.mode = "drun";
|
|
settings.allow_images = true;
|
|
};
|
|
}
|