chore: mini restructure, move home to top level

This commit is contained in:
notohh 2023-03-07 16:03:15 -05:00
parent 1bbfd212d0
commit 4ee8d5931d
Signed by: notohh
GPG key ID: BD47506D475EE86D
30 changed files with 35 additions and 34 deletions
home/git

16
home/git/default.nix Normal file
View file

@ -0,0 +1,16 @@
{pkgs, ...}: {
home.packages = [pkgs.gh];
programs.git = {
enable = true;
userEmail = "github@notohh.dev";
userName = "notohh";
signing = {
key = "BD47506D475EE86D";
signByDefault = true;
};
ignores = ["*result*" ".direnv" "node_modules"];
};
}