sync repo

This commit is contained in:
notkaori
2025-08-20 09:38:25 -06:00
parent 51f2ce340f
commit 1f3b39008e
17 changed files with 916 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
git
];
programs.git = {
enable = true;
userEmail = "autumnal,musing@gmail.com";
userName = "notkaori";
};
}