dotfiles/homes/x86_64-linux/christopher@cobalt/misc/launcher.nix
2025-10-13 11:58:06 +02:00

22 lines
419 B
Nix

{
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
fuzzel
];
programs.tofi = {
enable = true;
settings = {
font = "JetBrains Mono";
};
};
# 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
'';
}