15 lines
415 B
Nix
15 lines
415 B
Nix
{pkgs, config, lib, ...}:{
|
|
options.speccon18.hm.git.enable = lib.mkEnableOption "enables specs personal git preferences";
|
|
config = lib.mkIf config.speccon18.hm.git.enable {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "specCon18";
|
|
userEmail = "steven.carpenter@skdevstudios.com";
|
|
extraConfig = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|