This commit is contained in:
2026-02-11 22:44:15 +01:00
parent e80d6b06c0
commit 521610f044
4 changed files with 75 additions and 48 deletions

View File

@@ -1,13 +1,13 @@
{ primaryUser, ... }:
{ pkgs, primaryUser, ... }:
{
programs.git = {
enable = true;
settings = {
user = {
name = "DerGrumpf"; # TODO replace
email = "p.keier@beyerstedt-it.de"; # TODO replace
};
github = {
user = {
name = "DerGrumpf"; # TODO replace
email = "p.keier@beyerstedt-it.de"; # TODO replace
};
github = {
user = primaryUser;
};
init = {
@@ -17,4 +17,9 @@
lfs.enable = true;
ignores = [ "**/.DS_STORE" ];
};
home.packages = with pkgs; [
gh
];
}