From 99b86d2caf8404df8998c3bf40562200fe7950b0 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sat, 13 Dec 2025 11:05:33 +1000 Subject: [PATCH] fix: bad inherit --- flake.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index d099017..6232845 100644 --- a/flake.nix +++ b/flake.nix @@ -1,17 +1,10 @@ { 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 = { self, - inputs, + systems, ... - } @ args: { - inherit (import ./nib {}); - }; + } @ inputs: + import ./nib {}; }