From db25cf92f8b1e44f69f4f40683c6e17fe4aacda7 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Mon, 26 Jun 2023 20:38:18 +0200 Subject: [PATCH] [Nix] Don't be verbose if build user key already has the right permissions --- nix/builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/builder.nix b/nix/builder.nix index 935ff5a..af222c6 100644 --- a/nix/builder.nix +++ b/nix/builder.nix @@ -164,7 +164,7 @@ in system.activationScripts = { buildUserKeySetup.text = '' cp --force -v ${buildUserKeyFile} ${buildUserKeyFilePath} - chmod -v 400 ${buildUserKeyFilePath} + chmod -c 400 ${buildUserKeyFilePath} ''; }; };