the great update

This commit is contained in:
2025-03-07 17:04:41 +09:00
parent 442f46f622
commit 6216fcd751
77 changed files with 732 additions and 305 deletions

View File

@@ -0,0 +1,19 @@
{ config, pkgs, userSettings, ... }:
{
environment.systemPackages = with pkgs; [
git
gh
];
homix.".gitconfig".text = ''
[user]
email = ${userSettings.email-dev}
name = ${userSettings.name}
[credential "https://github.com"]
helper =
helper = ${pkgs.gh}/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = ${pkgs.gh}/bin/gh auth git-credential
'';
}