home: init btop, + gh config

This commit is contained in:
notohh 2023-05-21 06:04:38 -04:00
parent 043e5da30f
commit becb3eaf11
Signed by: notohh
GPG key ID: BD47506D475EE86D
4 changed files with 71 additions and 2 deletions
home/git

View file

@ -1,6 +1,4 @@
{pkgs, ...}: {
home.packages = with pkgs; [gh];
programs.git = {
enable = true;
userEmail = "github@notohh.dev";
@ -11,4 +9,12 @@
};
ignores = ["*result*" ".direnv" "node_modules"];
};
programs.gh = {
enable = true;
enableGitCredentialHelper = true;
settings = {
editor = "hx";
prompt = "enabled";
};
};
}