first working build of rewrite
This commit is contained in:
commit
44a3f420c6
29 changed files with 1261 additions and 0 deletions
15
modules/home-manager/git.nix
Normal file
15
modules/home-manager/git.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue