NixOSConfig/lib/users/manuel.nix

19 lines
277 B
Nix
Raw Normal View History

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