nix-config/modules/home/git/default.nix

9 lines
164 B
Nix

{ pkgs, ... }: {
programs.git = {
enable = true;
userName = "twoneis";
userEmail = "sanjay29@sapura.de";
};
home.packages = with pkgs; [ gh ];
}