Use explicit order in overlays

This commit is contained in:
Rodrigo Arias 2023-06-16 16:02:25 +02:00
parent 5b41670f36
commit 1724535495
2 changed files with 27 additions and 32 deletions

View File

@ -9,11 +9,12 @@
./slurm.nix
./ssh.nix
./users.nix
../../pkgs/mpi.nix
];
nixpkgs.overlays = [ bscpkgs.bscOverlay ];
nixpkgs.overlays = [
bscpkgs.bscOverlay
(import ../../pkgs/mpi.nix)
];
nix.nixPath = [
"nixpkgs=${nixpkgs}"

View File

@ -1,5 +1,4 @@
let
overlay = final: prev:
final: prev:
{
bsc = prev.bsc.extend (bsc: {
mpi2 = bsc.mpich;
@ -22,10 +21,5 @@ let
"FCFLAGS=-fallow-argument-mismatch"
];
});
};
};
in
{
nixpkgs.overlays = [ overlay ];
});
}