Allow specifying user mail addresses

This commit is contained in:
Manuel Thalmann 2024-05-09 01:56:30 +02:00
parent b0a08d549f
commit aadf94c27e

View file

@ -8,6 +8,12 @@ let
default = null;
};
mail = lib.mkOption {
type = lib.types.nullOr lib.types.mail;
description = lib.mdDoc "The mail address of the user.";
default = null;
};
defaultShell = lib.mkOption {
type = lib.types.anything;
description = "The default shell of the user.";