mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 06:50:14 +01:00
fix: listen to new new nix way of doing things 👍
This commit is contained in:
parent
21898ab8c8
commit
2eda7d9c2a
1 changed files with 9 additions and 7 deletions
|
|
@ -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
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue