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; };