1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/misc/pam/yubico-with-ids.nix
Vincent Haupert d8f9dcfbd3
pam: add yubico option
Write YubiKey token IDs in the format yubico_pam expects. See
https://developers.yubico.com/yubico-pam/ for details. Also refer to
the NixOS option security.pam.services.<name>.yubicoAuth.

Closes #2502
2021-12-16 19:46:47 +01:00

16 lines
387 B
Nix

{
config = {
pam.yubico.authorizedYubiKeys.ids = [ "abcdefghijkl" "012345678912" ];
nmt.script = ''
assertFileExists home-files/.yubico/authorized_yubikeys
assertFileContent \
home-files/.yubico/authorized_yubikeys \
${
builtins.toFile "yubico-with-ids-expected.txt"
"hm-user:abcdefghijkl:012345678912"
}
'';
};
}