pluginupdate.py: make experimental feature nix-command explicit

This commit is contained in:
Dr Perceptron 2022-01-08 16:49:28 +11:00
parent ec66a6a08f
commit 539f55df44
No known key found for this signature in database
GPG key ID: 95EB6DFF26D1CEB0

View file

@ -305,7 +305,7 @@ class CleanEnvironment(object):
def get_current_plugins(editor: Editor) -> List[Plugin]:
with CleanEnvironment():
cmd = ["nix", "eval", "--impure", "--json", "--expr", editor.get_plugins]
cmd = ["nix", "eval", "--extra-experimental-features", "nix-command", "--impure", "--json", "--expr", editor.get_plugins]
log.debug("Running command %s", cmd)
out = subprocess.check_output(cmd)
data = json.loads(out)