Use explicit order in overlays
This commit is contained in:
parent
5b41670f36
commit
1724535495
@ -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}"
|
||||
|
10
pkgs/mpi.nix
10
pkgs/mpi.nix
@ -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 ];
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user