From 75f068226f6c74583e306e74d349b232272639c1 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sat, 13 Dec 2025 13:23:05 +1000 Subject: [PATCH] fix inputs.systems.url typo --- flake.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index e618b26..07311a8 100644 --- a/flake.nix +++ b/flake.nix @@ -1,12 +1,8 @@ { description = "MyNib - My Nix Library"; - inputs.systems = "github:nix-systems/default"; + inputs.systems.url = "github:nix-systems/default"; - outputs = { - self, - systems, - ... - } @ inputs: + outputs = {systems}: import ./nib {inherit systems;}; }