dotfiles/modules/cli/git.nix

15 lines
248 B
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
let
base = (home: {
programs.git = {
enable = true;
userName = "MoritzBoehme";
userEmail = "mr.x@moritzboeh.me";
};
});
in
{
2021-09-15 00:41:46 +02:00
home-manager.users.moritz = { ... }: (base "/home/moritz");
2021-09-09 21:55:28 +02:00
}