mio-ops/default.nix

12 lines
296 B
Nix
Raw Normal View History

2020-05-10 22:17:06 +00:00
{ 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}";
};
}