NixOSConfig/lib/users/manuel.nix

12 lines
221 B
Nix
Raw Normal View History

2024-05-09 00:07:05 +00:00
{ user, ... }: {
config = {
home.stateVersion = "23.11";
programs.home-manager.enable = true;
programs.git = {
enable = true;
userName = user.fullName;
userEmail = user.mail;
};
};
}