Add personal settings

This commit is contained in:
Manuel Thalmann 2024-05-09 02:07:05 +02:00
parent 0a790ae727
commit 8d35fe5407

12
lib/users/manuel.nix Normal file
View file

@ -0,0 +1,12 @@
{ user, ... }: {
config = {
home.stateVersion = "23.11";
programs.home-manager.enable = true;
programs.git = {
enable = true;
userName = user.fullName;
userEmail = user.mail;
};
};
}