reciproka-ops/default.nix

16 lines
403 B
Nix
Raw Normal View History

2021-10-07 02:11:08 +00:00
{ sources ? import ./nix/sources.nix
, system ? builtins.currentSystem
, crossSystem ? null
, config ? {}
}@args: with import ./nix args; {
shell = mkShell {
inherit (import sources.niv {}) niv;
buildInputs = [
niv
nixopsUnstable # work around for issue #127423
];
NIX_PATH = "nixpkgs=${path}";
NIXOPS_DEPLOYMENT = "${globals.deploymentName}";
};
}