I am batman
This commit is contained in:
21
modules/misc/git.nix
Normal file
21
modules/misc/git.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ pkgs, ... }: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
user.name = "gibbyDev";
|
||||
user.email = "gibbyDEV@protonmail.com";
|
||||
init.defaultBranch = "main";
|
||||
credential.helper = "store";
|
||||
};
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
pkgs.gh
|
||||
pkgs.git-lfs
|
||||
pkgs.copilot-cli
|
||||
pkgs.noto-fonts
|
||||
pkgs.noto-fonts-color-emoji # renamed
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user