blob: 7140650806fbb833e571251f71b1591ac6039023 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, lib, pkgs, ... }: {
home.packages = with pkgs; [ wofi ];
xdg.configFile."wofi/config".source = pkgs.writeText "config" ''
allow_images=true
image_size=25px
drun-display_generic=true
dynamic_lines=true
insensitive=true
run-cache_file=/dev/null
'';
}
|