33 lines
795 B
Nix
33 lines
795 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
git-credential-manager
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
package = pkgs.gitMinimal;
|
|
lfs.enable = true;
|
|
|
|
settings = {
|
|
user.name = "Ghostfox";
|
|
|
|
init.defaultBranch = "main";
|
|
|
|
credential = {
|
|
helper = "manager";
|
|
credentialStore = "secretservice";
|
|
|
|
"https://github.com" = {
|
|
username = "kpghostfox";
|
|
email = "kpghostfox@int.pl";
|
|
};
|
|
|
|
"https://hazzy.nonamesoft.xyz" = {
|
|
username = "ghostfox";
|
|
email = "ghostfox@laminax.local";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |