mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 23:24:21 +00:00
pam: use attrsOf instead of attrs
This commit is contained in:
parent
fd50f5465f
commit
4323b35198
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ in
|
|||
options = {
|
||||
pam.sessionVariables = mkOption {
|
||||
default = {};
|
||||
type = types.attrs;
|
||||
type = with types; attrsOf (either int str);
|
||||
example = { EDITOR = "vim"; };
|
||||
description = ''
|
||||
Environment variables that will be set for the PAM session.
|
||||
|
|
Loading…
Reference in a new issue