12 lines
296 B
Nix
12 lines
296 B
Nix
{ sourcePaths ? import ./nix/sources.nix
|
|
, system ? builtins.currentSystem
|
|
, crossSystem ? null
|
|
, config ? {}
|
|
}@args: with import ./nix args; {
|
|
shell = mkShell {
|
|
buildInputs = [ niv nixops nix ];
|
|
NIX_PATH = "nixpkgs=${path}";
|
|
NIXOPS_DEPLOYMENT = "${globals.deploymentName}";
|
|
};
|
|
}
|