From 414370ee75c7dfb54358adfbbc702ea9b38a89b9 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Mon, 1 Nov 2021 11:00:53 +0100 Subject: [PATCH] use switch instead of test --- nixos/krops.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/krops.nix b/nixos/krops.nix index aa28d58..7e9f138 100644 --- a/nixos/krops.nix +++ b/nixos/krops.nix @@ -4,7 +4,7 @@ let # command that ensures we use flake.nix during switch command = targetPath: let - commandLine = "TMPDIR=/tmp nixos-rebuild test --flake ${targetPath} -L --keep-going"; + commandLine = "TMPDIR=/tmp nixos-rebuild switch --flake ${targetPath} -L --keep-going"; in '' echo '${commandLine}'