2eafb8192e
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
15 lines
387 B
Nix
15 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"
|
|
}
|
|
'';
|
|
};
|
|
}
|