moved users/willifan to home-manager module

This commit is contained in:
willifan 2024-12-24 17:24:11 +01:00 committed by willifan
parent 2838549a4c
commit 184b0866d4
56 changed files with 243 additions and 276 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
userName = "willifan";
userEmail = "willifan@pm.me";
extraConfig = {
init.defaultBranch = "main";
};
};
}