1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-27 17:08:31 +02:00

pam: use attrsOf instead of attrs

This commit is contained in:
Robert Helgesson 2019-03-31 13:29:30 +02:00
parent fd50f5465f
commit 4323b35198
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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.