Compare commits

..

1 Commits

Author SHA1 Message Date
4fd9b964eb only cross-compile when necessary
All checks were successful
Eval nix flake / evals (push) Successful in 8m41s
Eval nix flake / evals (pull_request) Successful in 10m1s
2026-02-21 01:25:53 +01:00

View File

@@ -94,7 +94,6 @@
}:
let
commonPkgsConfig = {
inherit localSystem crossSystem;
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg)
[
"nvidia-x11"
@@ -104,8 +103,11 @@
# Global overlays go here
inputs.roowho2.overlays.default
]) ++ overlays;
};
} // (if localSystem != crossSystem then {
inherit localSystem crossSystem;
} else {
system = crossSystem;
});
pkgs = import nixpkgs commonPkgsConfig;
unstablePkgs = import nixpkgs-unstable commonPkgsConfig;
in