blob: 6368a7af01d8b999592af5606f90f0053c442b71 (
plain) (
tree)
|
|
{ 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
'';
}
|