nib/flake.nix

18 lines
308 B
Nix
Raw Normal View History

2025-11-01 13:20:13 +10:00
{
description = "MyNib - My Nix Library";
inputs = {
# # Externally extensible flake systems
# # REF: https://github.com/nix-systems/nix-systems
2025-11-05 13:46:44 +10:00
systems.url = "github:nix-systems/default";
2025-11-01 13:20:13 +10:00
};
outputs = {
self,
inputs,
...
2025-11-05 13:46:44 +10:00
} @ args: {
inherit (import ./nib {});
2025-11-01 13:20:13 +10:00
};
}