First working version of NixOS intall

This commit is contained in:
Yorick Barbanneau 2023-07-23 01:18:29 +02:00
commit 5ab67429b2
47 changed files with 1801 additions and 0 deletions

9
modules/home/cli/git.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
programs.git = {
enable = true;
package = pkgs.gitFull;
userName = "Yorick Barbanneau";
userEmail = "ephase@xieme-art.org";
};
}