18 lines
397 B
Nix
18 lines
397 B
Nix
{ config, lib, ... }: {
|
|
|
|
options.sysconfig.opts.git.enable = lib.options.mkOption {};
|
|
|
|
config = lib.mkIf config.sysconfig.opts.git.enable {
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
config = {
|
|
user = {
|
|
name = "Nathan";
|
|
email = "nathanblunkall5@gmail.com";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|