Commit d031d27
Changed files (1)
modules
users
modules/users/schema.nix
@@ -36,9 +36,9 @@ in {
default = null;
description = "Avatar for the user";
};
- gpgKey = mkOption {
- type = types.nullOr (types.either types.path types.str);
- default = null;
+ gpgKeys = mkOption {
+ type = types.listOf (types.either types.path types.str);
+ default = [];
description = "GPG key ID for the user";
};
sshKeys = mkOption {