1

Modules/Beets: Disable beet completion generation in activation script

This commit is contained in:
2025-07-15 22:43:30 +02:00
parent 304f3bcaf5
commit e9da5959bd

View File

@ -73,11 +73,12 @@ in {
};
# Generate fish completions
home.activation = {
beets-fish-completions = lib.hm.dag.entryAfter ["writeBoundary"] ''
echo "Generating beet completions for fish shell at ~/.config/fish/completions/beet.fish"
beet fish
'';
};
# TODO: This doesn't work if ~/Music is mounted after the activation...
# home.activation = {
# beets-fish-completions = lib.hm.dag.entryAfter ["writeBoundary"] ''
# echo "Generating beet completions for fish shell at ~/.config/fish/completions/beet.fish"
# beet fish
# '';
# };
};
}