nixfiles/darwin/common/overlay.nix

11 lines
118 B
Nix

{
inputs,
system,
...
}: {
nixpkgs = {
overlays = [
inputs.spacebar.overlay.${system}
];
};
}