nixos-config/modules/home/git/default.nix
2023-11-05 13:00:39 +01:00

20 lines
323 B
Nix

{ pkgs, ... }: {
programs.git = {
enable = true;
userName = "Frost-Phoenix";
userEmail = "67cyril6767@gmail.com";
defaultBranch = "main";
extraConfig = {
credential.helper = "store";
};
};
home.packages = [ pkgs.gh ];
# home.configFile."git/config".source = ./config;
}