mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
16 lines
306 B
Nix
16 lines
306 B
Nix
{
|
|
description = "nix begat oizys";
|
|
|
|
# inputs.flake-inputs.url = "github:daylinmorgan/oizys?dir=inputs";
|
|
inputs.flake-inputs.url = "path:./inputs";
|
|
|
|
outputs = {
|
|
self,
|
|
flake-inputs,
|
|
}:
|
|
(import ./lib {
|
|
inherit self;
|
|
inputs = flake-inputs.inputs;
|
|
})
|
|
.oizysFlake {};
|
|
}
|