feat(wofi): add wofi config for drun

This commit is contained in:
514fpv 2024-01-04 11:46:56 +08:00
parent c2ec169a17
commit daacc0fe68
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

10
home/wofi/home.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
programs.wofi = {
enable = true;
settings.mode = "drun";
settings.allow_images = true;
};
}