I've set the nixpath to one of my deployments by mistake (by using nixops modify -I foobar -d mydeployment) and wanted to revert to using the default nixpath but didn't find a way to do so (I tried nixops modify -I "" -d mydeployment but it just set nixpath to the current directory).
I ended up running the following SQL query: delete from DeploymentAttrs where deployment = 'xxx' and name = 'nixPath';, but I think it would be nice to be able to remove the nixpath option.
I've set the nixpath to one of my deployments by mistake (by using
nixops modify -I foobar -d mydeployment
) and wanted to revert to using the default nixpath but didn't find a way to do so (I triednixops modify -I "" -d mydeployment
but it just set nixpath to the current directory).I ended up running the following SQL query:
delete from DeploymentAttrs where deployment = 'xxx' and name = 'nixPath';
, but I think it would be nice to be able to remove the nixpath option.