diff options
| author | Fuwn <[email protected]> | 2025-05-25 03:50:49 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-25 03:50:49 -0700 |
| commit | 033d8070ef58dc437245b1c1cbd6e44082db3bd7 (patch) | |
| tree | c40e3895035e9a281fbe6415a6b14ec5b8b25c57 | |
| parent | Nara: Bump Homebrew sources (diff) | |
| download | nixos-config-033d8070ef58dc437245b1c1cbd6e44082db3bd7.tar.xz nixos-config-033d8070ef58dc437245b1c1cbd6e44082db3bd7.zip | |
Nara: Add Apple Watch authentication support for PAM
| -rw-r--r-- | modules/mac/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/mac/default.nix b/modules/mac/default.nix index 5ec2737..0321f2e 100644 --- a/modules/mac/default.nix +++ b/modules/mac/default.nix @@ -4,7 +4,10 @@ ./users.nix ]; - security.pam.services.sudo_local.touchIdAuth = true; + security.pam.services.sudo_local = { + touchIdAuth = true; + watchIdAuth = true; + }; nix = { enable = false; |