Fix flake.nix and home/default.nix configurations

This commit is contained in:
panotaka
2023-11-25 00:23:44 -04:00
parent dc7f1c0234
commit 19f7ff60e8
3 changed files with 49 additions and 39 deletions

12
home/shell/git.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs
, ...
}: {
home.packages = [ pkgs.gh ];
programs.git = {
enable = true;
userName = "Thomas Syms";
userEmail = "thomassyms@gmail.com";
};
}