Add a Nix overlay

This commit is contained in:
Konstantin Nazarov 2023-05-14 20:33:41 +01:00
parent 822adb11c6
commit c146ba7418
Signed by: knazarov
GPG key ID: 4CFE0A42FA409C22

View file

@ -69,5 +69,8 @@
}; };
}); });
packages = forAllSystems({ pkgs }: {"q-sh" = make_package pkgs;}); packages = forAllSystems({ pkgs }: {"q-sh" = make_package pkgs;});
overlays.default = final: prev: {
q-sh = make_package prev;
};
}; };
} }