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