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