fix: listen to new new nix way of doing things 👍

This commit is contained in:
Ahwx 2025-11-21 11:47:03 +01:00
parent 21898ab8c8
commit 2eda7d9c2a

View file

@ -1,12 +1,11 @@
{ pkgs, ... }:
{ pkgs, ... }:
{
programs.git = {
enable = true;
userName = "Ahwx";
userEmail = "ahwx@ahwx.org";
extraConfig = {
settings = {
user.name = "Ahwx";
user.email = "ahwx@ahwx.org";
init.defaultBranch = "master";
credential.helper = "store";
alias.stat = "status";
@ -14,5 +13,8 @@
};
};
home.packages = [ pkgs.gh pkgs.git-lfs ];
home.packages = [
pkgs.gh
pkgs.git-lfs
];
}