Add git config and initial emacs config.

This commit is contained in:
Tom Alexander
2024-12-20 13:12:27 -05:00
parent 7e768022e7
commit ba3a6e74eb
31 changed files with 1399 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
imports = [];
environment.systemPackages = with pkgs; [
git
];
home-manager.users.talexander = { pkgs, ... }: {
home.file.".gitconfig" = {
source = ./files/gitconfig_home;
};
};
}