incorporated john-p14s, big squash merge of stuff

This commit is contained in:
John Lancaster
2026-03-29 15:12:38 -05:00
parent 31df60a718
commit 93458a5e53
37 changed files with 924 additions and 419 deletions
+8 -3
View File
@@ -1,6 +1,8 @@
{
flake.modules.homeManager.git = { config, lib, ... }:
{
{ self, inputs, ... }: {
flake.modules.homeManager.git = { config, pkgs, lib, ... }: {
home.packages = with pkgs; [
git-credential-oauth
];
programs.git = {
enable = true;
settings = {
@@ -14,5 +16,8 @@
enableBashIntegration = true;
enableZshIntegration = true;
};
home.shellAliases = {
"lzg" = "lazygit";
};
};
}