From 23d8078b96e7e717518908fc1c80fe586cc2f4ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 16 Oct 2023 01:27:12 +0200 Subject: [PATCH] autoupdate: make diff always work --- modules/autoupdate.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/autoupdate.nix b/modules/autoupdate.nix index d6d80a53..320c4d09 100644 --- a/modules/autoupdate.nix +++ b/modules/autoupdate.nix @@ -69,7 +69,7 @@ text = '' if [ -e /run/current-system ] && [ -e $systemConfig ]; then echo System package diff: - ${config.nix.package}/bin/nix store diff-closures /run/current-system $systemConfig || true + ${config.nix.package}/bin/nix --extra-experimental-features nix-command store diff-closures /run/current-system $systemConfig || true fi ''; };