WIP: treewide: refactor to use flake-parts

first pass of my flake refactor using flake-parts
This commit is contained in:
notohh 2024-04-16 21:02:33 -04:00
commit 502c926f9f
Signed by: notohh
GPG key ID: BD47506D475EE86D
77 changed files with 723 additions and 795 deletions
home/programs

23
home/programs/git.nix Normal file
View file

@ -0,0 +1,23 @@
{pkgs, ...}: {
programs = {
git = {
enable = true;
delta.enable = true;
userEmail = "github@notohh.dev";
userName = "notohh";
signing = {
key = "BD47506D475EE86D";
signByDefault = true;
};
ignores = ["*result*" ".direnv" "node_modules"];
};
gh = {
enable = true;
gitCredentialHelper.enable = true;
settings = {
editor = "hx";
prompt = "enabled";
};
};
};
}