forked from rarias/devshell
Add slurm devshell for Isabel
This commit is contained in:
21
isabel/slurm/flake.nix
Normal file
21
isabel/slurm/flake.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
inputs.bscpkgs.url = "git+https://git.sr.ht/~rodarima/bscpkgs";
|
||||
outputs = { self, bscpkgs }:
|
||||
let
|
||||
nixpkgs = bscpkgs.inputs.nixpkgs;
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
overlays = [ bscpkgs.outputs.bscOverlay ];
|
||||
};
|
||||
in {
|
||||
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||
pname = "devshell";
|
||||
#buildInputs = with pkgs; [
|
||||
# gcc # more packages here...
|
||||
#];
|
||||
inputsFrom = with pkgs; [
|
||||
slurm nanos6
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user