mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-21 17:59:39 +01:00
15 lines
373 B
Nix
15 lines
373 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"}
|
|
'';
|
|
};
|
|
}
|