oizys/flake.nix

17 lines
306 B
Nix
Raw Normal View History

2024-01-23 11:51:13 -06:00
{
2024-01-28 11:00:05 -06:00
description = "nix begat oizys";
2024-01-23 11:51:13 -06:00
2024-02-21 14:36:33 -06:00
# inputs.flake-inputs.url = "github:daylinmorgan/oizys?dir=inputs";
inputs.flake-inputs.url = "path:./inputs";
2024-01-31 14:47:55 -06:00
outputs = {
self,
2024-02-21 14:36:33 -06:00
flake-inputs,
}:
(import ./lib {
inherit self;
2024-02-21 14:36:33 -06:00
inputs = flake-inputs.inputs;
})
.oizysFlake {};
2024-01-23 11:51:13 -06:00
}