10 lines
299 B
Nix
10 lines
299 B
Nix
{
|
|
flake.overlays.spotify-shortcuts = final: prev: {
|
|
bulk-transcode = final.callPackage ./_derivation.nix {};
|
|
};
|
|
perSystem = {pkgs, ...}: {
|
|
packages.spotify-shortcuts = pkgs.callPackage ./_derivation.nix {};
|
|
devShells.spotify-shortcuts = import ./_shell.nix {inherit pkgs;};
|
|
};
|
|
}
|