diff --git a/.config/nix/home/core.nix b/.config/nix/home/core.nix index 6ab1f8a..54f689e 100644 --- a/.config/nix/home/core.nix +++ b/.config/nix/home/core.nix @@ -15,5 +15,4 @@ }; programs.bat.enable = true; - programs.git.enable = true; } diff --git a/.config/nix/home/git.nix b/.config/nix/home/git.nix new file mode 100644 index 0000000..5ef8094 --- /dev/null +++ b/.config/nix/home/git.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + programs.git = { + enable = true; + userName = "Tobias Ostner"; + userEmail = "tobias.ostner@gmail.com"; + }; +}