nix-config/modules/home/git/default.nix
2023-11-12 19:38:02 +01:00

9 lines
158 B
Nix

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