10 lines
204 B
Nix
10 lines
204 B
Nix
{pkgs, outputs, ...}: {
|
|
# Enable git and config
|
|
programs.git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
userName = outputs.secrets.jimUsername;
|
|
userEmail = outputs.secrets.jimEmail;
|
|
};
|
|
}
|