[Nix] Don't be verbose if build user key already has the right permissions

This commit is contained in:
Antoine Viallon 2023-06-26 20:38:18 +02:00
parent 6467771227
commit db25cf92f8
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -164,7 +164,7 @@ in
system.activationScripts = {
buildUserKeySetup.text = ''
cp --force -v ${buildUserKeyFile} ${buildUserKeyFilePath}
chmod -v 400 ${buildUserKeyFilePath}
chmod -c 400 ${buildUserKeyFilePath}
'';
};
};