Rename systems to not conflict with snowfall-lib

This commit is contained in:
Kaare Hoff Skovgaard 2025-07-05 12:08:56 +02:00
parent 3dd05fd235
commit 46cfe38cef
Signed by: khs
GPG key ID: C7D890804F01E9F0

View file

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