oizys/flake.nix

15 lines
287 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-02-21 14:36:33 -06:00
# inputs.flake-inputs.url = "github:daylinmorgan/oizys?dir=inputs";
2024-02-21 15:47:58 -06:00
inputs.inputs.url = "path:./inputs";
outputs = {
2024-02-21 15:47:58 -06:00
inputs,
self,
2024-02-21 14:36:33 -06:00
}:
(import ./lib {
2024-02-21 15:47:58 -06:00
inherit (inputs) inputs;
inherit self;
2024-02-21 14:36:33 -06:00
})
.oizysFlake {};
2024-01-23 11:51:13 -06:00
}