From 5a70ea986136bf465009f9d1d3a31efaec756c66 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Tue, 18 May 2021 18:05:38 +0200 Subject: [PATCH] Fix nvd call in update-system --- lib/update-system.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/update-system.nix b/lib/update-system.nix index 0718923e..4e086b6a 100644 --- a/lib/update-system.nix +++ b/lib/update-system.nix @@ -17,6 +17,6 @@ in oldSystem <- readlink "-f" "/run/current-system" |> captureTrim nixos_rebuild (paths ++ ["switch"] ++ fmap toString args) &!> StdOut |> nom newSystem <- readlink "-f" "/run/current-system" |> captureTrim - nvd oldSystem newSystem + nvd "diff" oldSystem newSystem ''; }