nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

git.nix (162B)


      1 { fullname, email, ... }:
      2 
      3 {
      4   programs.git = {
      5     enable = true;
      6     settings = {
      7       user.name = "${fullname}";
      8       user.email = "${email}";
      9     };
     10   };
     11 }