nixos/home/wofi/home.nix

13 lines
246 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;
};
2024-01-04 11:54:14 +08:00
wayland.windowManager.sway.menu = "wofi -show drun -modi drun";
2024-01-04 11:46:56 +08:00
}