1

Modules/Beets: Automatically generate fish completions during activation

This commit is contained in:
2025-07-12 15:10:52 +02:00
parent d332382803
commit cec14ed0e9

View File

@ -71,5 +71,13 @@ 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
'';
};
};
}