From 89eacbcbdd6d863286d2cdcecd6eceb0c37314b6 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Thu, 4 Jan 2024 11:46:56 +0800 Subject: [PATCH] home(wofi): add wofi config for drun --- home/wofi/home.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 home/wofi/home.nix diff --git a/home/wofi/home.nix b/home/wofi/home.nix new file mode 100644 index 00000000..eef12e8c --- /dev/null +++ b/home/wofi/home.nix @@ -0,0 +1,10 @@ +{ pkgs +, lib +, config +, ... }: with lib; mkIf config.passthrough.gui { + programs.wofi = { + enable = true; + settings.mode = "drun"; + settings.allow_images = true; + }; +}