summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2021-08-17 19:35:14 +0200
committerGitHub <noreply@github.com>2021-08-17 19:35:14 +0200
commitd4b27d7d336829a4fedb762cd2d3e79b1226b852 (patch)
tree096edefef881f227a007f9fb78a48aee7c47f67a /nixos
parentd1355cb7bebfcc92c903037d8f2fd86dafb0d67f (diff)
parent891e537592bc6460dc06c44d734a4c4ea47a1ae3 (diff)
downloadnixpkgs-d4b27d7d336829a4fedb762cd2d3e79b1226b852.tar
nixpkgs-d4b27d7d336829a4fedb762cd2d3e79b1226b852.tar.gz
nixpkgs-d4b27d7d336829a4fedb762cd2d3e79b1226b852.tar.bz2
nixpkgs-d4b27d7d336829a4fedb762cd2d3e79b1226b852.tar.lz
nixpkgs-d4b27d7d336829a4fedb762cd2d3e79b1226b852.tar.xz
nixpkgs-d4b27d7d336829a4fedb762cd2d3e79b1226b852.tar.zst
nixpkgs-d4b27d7d336829a4fedb762cd2d3e79b1226b852.zip
Merge pull request #134475 from MalteT/fix/pam-config-challengeResponsePath
nixos/pam: Fix `security.pam.yubico.challengeResponsePath` type
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/security/pam.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix
index 9a6c7d17825..5400ba1ef98 100644
--- a/nixos/modules/security/pam.nix
+++ b/nixos/modules/security/pam.nix
@@ -828,7 +828,7 @@ in
       };
       challengeResponsePath = mkOption {
         default = null;
-        type = types.path;
+        type = types.nullOr types.path;
         description = ''
           If not null, set the path used by yubico pam module where the challenge expected response is stored.