Fix 'nix flake check' evaluation
I should figure out why 'pre-commit' even needs dotnet at some point...
This commit is contained in:
parent
c48624c0f3
commit
964d796b4b
14
flake.nix
14
flake.nix
|
@ -34,7 +34,19 @@
|
|||
, nixpkgs
|
||||
, pre-commit-hooks
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem
|
||||
let
|
||||
inherit (flake-utils.lib) eachSystem system;
|
||||
|
||||
mySystems = [
|
||||
system.aarch64-darwin
|
||||
system.aarch64-linux
|
||||
system.x86_64-darwin
|
||||
system.x86_64-linux
|
||||
];
|
||||
|
||||
eachMySystem = eachSystem mySystems;
|
||||
in
|
||||
eachMySystem
|
||||
(system:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
|
|
Loading…
Reference in a new issue