dotfiles/home/by-host/endurance/misc/launcher.nix
Christopher Mühl bd0a03e7b8 Re-enable darwin builds
home-manager only for now
2026-01-30 12:10:31 +01:00

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
'';
}