From a0fbccbbbab933593af6a90879c3c6ba4c669117 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 21 Jun 2024 09:46:40 +0200 Subject: [PATCH] feat: set my git information and move to master branch, add gh and git-lfs packages --- modules/home/git.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/home/git.nix b/modules/home/git.nix index 14d29c5..fc60996 100644 --- a/modules/home/git.nix +++ b/modules/home/git.nix @@ -3,14 +3,14 @@ programs.git = { enable = true; - userName = "Frost-Phoenix"; - userEmail = "67cyril6767@gmail.com"; + userName = "Ahwx"; + userEmail = "ahwx@ahwx.org"; extraConfig = { - init.defaultBranch = "main"; + init.defaultBranch = "master"; credential.helper = "store"; }; }; - # home.packages = [ pkgs.gh pkgs.git-lfs ]; + home.packages = [ pkgs.gh pkgs.git-lfs ]; }