diff --git a/extensions/options.nix b/extensions/options.nix index 48cd88fd..62291a21 100644 --- a/extensions/options.nix +++ b/extensions/options.nix @@ -15,7 +15,7 @@ let category = "host state"; package = pkgs.mkcert; command = '' - echo "$(tput bold)Installing the ${name}'s dev CA into local trust stores via mkcert command ...$(tput sgr0)" + echo "$(tput bold)Installing ${name}'s dev CA into local trust stores via mkcert command ...$(tput sgr0)" export CAROOT=${dev-ca-path} ${pkgs.mkcert}/bin/mkcert -install ''; @@ -26,7 +26,7 @@ let category = "host state"; package = pkgs.mkcert; command = '' - echo "$(tput bold)Purging the ${name}'s dev CA from local trust stores via mkcert command ...$(tput sgr0)" + echo "$(tput bold)Purging ${name}'s dev CA from local trust stores via mkcert command ...$(tput sgr0)" export CAROOT=${dev-ca-path} ${pkgs.mkcert}/bin/mkcert -uninstall '';