work email: default unset

This commit is contained in:
Motiejus Jakštys 2024-05-06 14:42:46 +03:00 committed by Motiejus Jakštys
parent 3966613521
commit 45dab03a0f
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ in {
default = false;
};
email = lib.mkOption {
type = str;
type = nullOr str;
default = "motiejus@jakstys.lt";
};
user = props;

View File

@ -2,7 +2,7 @@
lib,
pkgs,
stateVersion,
email,
email ? null,
devTools,
hmOnly,
username,

View File

@ -3,7 +3,7 @@
pkgs,
...
}: {
mj.base.users.email = "motiejus.jakstys@chronosphere.io";
mj.base.users.email = null;
mj.base.users.user.extraGroups = ["docker"];
environment.systemPackages =