2016-02-24 21:41:02 +00:00
|
|
|
# This module provides configuration for the OATH PAM modules.
|
2018-07-20 20:56:59 +00:00
|
|
|
{ lib, ... }:
|
2016-02-24 21:41:02 +00:00
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
|
|
|
security.pam.oath = {
|
2024-08-28 19:18:53 +00:00
|
|
|
enable = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2016-02-24 21:41:02 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Enable the OATH (one-time password) PAM module.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:53 +00:00
|
|
|
digits = lib.mkOption {
|
|
|
|
type = lib.types.enum [ 6 7 8 ];
|
2016-02-24 21:41:02 +00:00
|
|
|
default = 6;
|
|
|
|
description = ''
|
2024-08-28 19:18:53 +00:00
|
|
|
Specify the lib.length of the one-time password in number of
|
2016-02-24 21:41:02 +00:00
|
|
|
digits.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:53 +00:00
|
|
|
window = lib.mkOption {
|
|
|
|
type = lib.types.int;
|
2016-02-24 21:41:02 +00:00
|
|
|
default = 5;
|
|
|
|
description = ''
|
|
|
|
Specify the number of one-time passwords to check in order
|
|
|
|
to accommodate for situations where the system and the
|
|
|
|
client are slightly out of sync (iteration for HOTP or time
|
|
|
|
steps for TOTP).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:53 +00:00
|
|
|
usersFile = lib.mkOption {
|
|
|
|
type = lib.types.path;
|
2016-02-24 21:41:02 +00:00
|
|
|
default = "/etc/users.oath";
|
|
|
|
description = ''
|
|
|
|
Set the path to file where the user's credentials are
|
|
|
|
stored. This file must not be world readable!
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|