blob: 6368a7af01d8b999592af5606f90f0053c442b71 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ pkgs, config, ... }:
{
home.packages = with pkgs; [
wofi
];
xdg.configFile."wofi/config".text = ''
image_size=48
columns=3
allow_images=true
insensitive=true
term=${config.wayland.windowManager.sway.config.terminal}
run-always_parse_args=true
run-cache_file=/dev/null
run-exec_search=true
'';
}
|