From 46cfe38cef6911152377b511d7d620db5b6d1e13 Mon Sep 17 00:00:00 2001 From: Kaare Hoff Skovgaard Date: Sat, 5 Jul 2025 12:08:56 +0200 Subject: [PATCH] Rename systems to not conflict with snowfall-lib --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index dfc672c..cc51c0b 100644 --- a/flake.nix +++ b/flake.nix @@ -45,7 +45,7 @@ { lib.mkFlake = options@{ - systems ? [ + flakeBaseSystems ? [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" @@ -56,13 +56,13 @@ }: let snowfallOptions = builtins.removeAttrs options [ - "systems" + "flakeBaseSystems" "devShellPackages" "treeFmtFile" ]; in (snowfall-lib.mkFlake snowfallOptions) - // (mapEachSystem systems ( + // (mapEachSystem flakeBaseSystems ( system: let pkgs = import nixpkgs { inherit system; };