From b4b39ef78f2a64c2264d689122b2d6a56395cd6f Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sat, 13 Dec 2025 13:16:28 +1000 Subject: [PATCH] use github:nix-systems --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6232845..e618b26 100644 --- a/flake.nix +++ b/flake.nix @@ -1,10 +1,12 @@ { description = "MyNib - My Nix Library"; + inputs.systems = "github:nix-systems/default"; + outputs = { self, systems, ... } @ inputs: - import ./nib {}; + import ./nib {inherit systems;}; }