dotfiles/homes/x86_64-linux/christopher@cobalt/misc/launcher.nix
Christopher Mühl 54e67cf2de
Install copyparty
Move some services and configurations around
2025-09-18 13:34:10 +02:00

16 lines
328 B
Nix

{
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
tofi
fuzzel
];
# 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
'';
}