15 lines
246 B
Nix
15 lines
246 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
base = (home: {
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "MoritzBoehme";
|
||
|
userEmail = "mr.x@moritzboeh.me";
|
||
|
};
|
||
|
});
|
||
|
in
|
||
|
{
|
||
|
home-manager.users.moritz = {...}: (base "/home/moritz");
|
||
|
}
|