19 lines
383 B
Nix
19 lines
383 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.tofi.enable = true;
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
#settings = ''
|
|
#
|
|
#'';
|
|
};
|
|
|
|
# Clear the tofi cache after each activation so that newly installed packages
|
|
# are immediately available using tofi-drun.
|
|
home.activation.cleanTofiCache = lib.hm.dag.entryAfter ["writeBoundary"] ''
|
|
rm -rf ~/.cache/tofi-drun
|
|
'';
|
|
}
|