Skip to content

Commit aec937b

Browse files
author
David Arnold
committed
wording
1 parent 972da7b commit aec937b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extensions/options.nix

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let
1515
category = "host state";
1616
package = pkgs.mkcert;
1717
command = ''
18-
echo "$(tput bold)Installing the ${name}'s dev CA into local trust stores via mkcert command ...$(tput sgr0)"
18+
echo "$(tput bold)Installing ${name}'s dev CA into local trust stores via mkcert command ...$(tput sgr0)"
1919
export CAROOT=${dev-ca-path}
2020
${pkgs.mkcert}/bin/mkcert -install
2121
'';
@@ -26,7 +26,7 @@ let
2626
category = "host state";
2727
package = pkgs.mkcert;
2828
command = ''
29-
echo "$(tput bold)Purging the ${name}'s dev CA from local trust stores via mkcert command ...$(tput sgr0)"
29+
echo "$(tput bold)Purging ${name}'s dev CA from local trust stores via mkcert command ...$(tput sgr0)"
3030
export CAROOT=${dev-ca-path}
3131
${pkgs.mkcert}/bin/mkcert -uninstall
3232
'';
@@ -72,8 +72,8 @@ let
7272
7373
Use cases:
7474
- Ship static dev certificates under version control and make them trusted
75-
on user machines: add the rootCA under version control alongside the
76-
your dev certificates.
75+
on user machines: add the rootCA under version control alongside your
76+
dev certificates.
7777
- Provide users with easy and reliable CA bootstrapping through the mkcert
7878
command: exempt this path from version control via .gitignore and have
7979
users easily and reliably bootstrap a dev CA infrastructure on first use.

0 commit comments

Comments
 (0)