shell.nix: make the NIXOPS_STATE path absolute

This commit is contained in:
zimbatm 2020-01-22 12:38:18 +01:00
parent b5f7438b2f
commit 5b70fbdf2c
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7

View file

@ -12,7 +12,7 @@ pkgs.mkShell {
NIX_PATH = "nixpkgs=${toString pkgs.path}";
NIXOPS_DEPLOYMENT = "nix-community-infra";
NIXOPS_STATE = "./state/deployment-state.nixops";
NIXOPS_STATE = toString ./state/deployment-state.nixops;
buildInputs = [
pkgs.git-crypt