fix: bad inherit

This commit is contained in:
Emile Clark-Boman 2025-12-13 11:05:33 +10:00
parent 4017ae1491
commit 99b86d2caf

View file

@ -1,17 +1,10 @@
{ {
description = "MyNib - My Nix Library"; description = "MyNib - My Nix Library";
inputs = {
# # Externally extensible flake systems
# # REF: https://github.com/nix-systems/nix-systems
systems.url = "github:nix-systems/default";
};
outputs = { outputs = {
self, self,
inputs, systems,
... ...
} @ args: { } @ inputs:
inherit (import ./nib {}); import ./nib {};
};
} }