nixos/home/wofi/home.nix

11 lines
179 B
Nix
Raw Normal View History

2024-01-04 11:46:56 +08:00
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
programs.wofi = {
enable = true;
settings.mode = "drun";
settings.allow_images = true;
};
}