19 lines
277 B
Nix
19 lines
277 B
Nix
{ user, ... }: {
|
|
imports = [
|
|
./common.nix
|
|
];
|
|
|
|
config = {
|
|
home.stateVersion = "23.11";
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
|
|
git = {
|
|
enable = true;
|
|
userName = user.fullName;
|
|
userEmail = user.mail;
|
|
};
|
|
};
|
|
};
|
|
} |