nixos configurations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
140 B

4 months ago
  1. {pkgs, settings, ...}:
  2. {
  3. programs.git = {
  4. enable = true;
  5. userName = settings.git.name;
  6. userEmail = settings.git.email;
  7. };
  8. }