1
0
Fork 0
mirror of https://github.com/daylinmorgan/oizys.git synced 2025-01-09 22:47:33 -06:00
oizys/overlays/default.nix

12 lines
245 B
Nix
Raw Normal View History

2024-09-10 16:31:26 -05:00
{ inputs, loadOverlays }:
(loadOverlays inputs ./.)
++ [
inputs.nim2nix.overlays.default # adds buildNimPackage
(final: _prev: {
stable = import inputs.stable {
system = final.system;
config.allowUnfree = true;
};
})
]