git: make userName
and userEmail
options optional
(cherry picked from commit 52692e299d
)
This commit is contained in:
parent
9901509ef8
commit
2b19f15be3
|
@ -88,12 +88,14 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
userName = mkOption {
|
userName = mkOption {
|
||||||
type = types.str;
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
description = "Default user name to use.";
|
description = "Default user name to use.";
|
||||||
};
|
};
|
||||||
|
|
||||||
userEmail = mkOption {
|
userEmail = mkOption {
|
||||||
type = types.str;
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
description = "Default user email to use.";
|
description = "Default user email to use.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -168,8 +170,8 @@ in
|
||||||
home.packages = [ cfg.package ];
|
home.packages = [ cfg.package ];
|
||||||
|
|
||||||
programs.git.iniContent.user = {
|
programs.git.iniContent.user = {
|
||||||
name = cfg.userName;
|
name = mkIf (cfg.userName != null) cfg.userName;
|
||||||
email = cfg.userEmail;
|
email = mkIf (cfg.userEmail != null) cfg.userEmail;
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
|
|
Loading…
Reference in a new issue