1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-09-11 12:49:18 +03:00

Merge pull request #743 from emilazy/fix-enable-option-docs

treewide: fix `mkEnableOption` docs
This commit is contained in:
Emily 2023-07-23 04:50:08 +01:00 committed by GitHub
commit ced9f58f87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 14 deletions

View File

@ -536,8 +536,7 @@ in
[](#opt-homebrew.onActivation).
This module also provides a few options for modifying how Homebrew commands behave when
you manually invoke them, under [](#opt-homebrew.global)
'');
you manually invoke them, under [](#opt-homebrew.global)'');
brewPrefix = mkOption {
type = types.str;

View File

@ -39,17 +39,24 @@ in
{
options = {
security.pam.enableSudoTouchIdAuth = mkEnableOption (lib.mdDoc ''
Enable sudo authentication with Touch ID
security.pam.enableSudoTouchIdAuth = mkEnableOption "" // {
description = lib.mdDoc ''
Enable sudo authentication with Touch ID.
When enabled, this option adds the following line to /etc/pam.d/sudo:
When enabled, this option adds the following line to
{file}`/etc/pam.d/sudo`:
auth sufficient pam_tid.so
```
auth sufficient pam_tid.so
```
(Note that macOS resets this file when doing a system update. As such, sudo
authentication with Touch ID won't work after a system update until the nix-darwin
configuration is reapplied.)
'');
::: {.note}
macOS resets this file when doing a system update. As such, sudo
authentication with Touch ID won't work after a system update
until the nix-darwin configuration is reapplied.
:::
'';
};
};
config = {

View File

@ -54,8 +54,7 @@ in
Using this requires a TLS certificate that can be
generated by starting the Synergy GUI once and entering
a valid product key.
'');
a valid product key'');
cert = mkOption {
type = types.nullOr types.str;
default = null;
@ -102,8 +101,7 @@ in
Using this requires a TLS certificate that can be
generated by starting the Synergy GUI once and entering
a valid product key.
'');
a valid product key'');
cert = mkOption {
type = types.nullOr types.str;
default = null;