chore: initial commit

This commit is contained in:
Glen Goodwin 2023-06-06 23:58:36 -04:00
commit cc4f3398ff
37 changed files with 2210 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ config, lib, pkgs, user, ... }: {
programs.git = {
enable = true;
userName = "Glen Goodwin";
userEmail = "glen.goodwin1992@gmail.com";
extraConfig = {
merge = {
ff = "only";
};
};
};
home.packages = with pkgs; [
cocogitto
lazygit
gh
pre-commit
];
}