16 lines
227 B
Nix
16 lines
227 B
Nix
{
|
|
user,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../shared.nix
|
|
];
|
|
|
|
networking.hostName = "jason";
|
|
networking.computerName = "Jason";
|
|
|
|
home-manager.users.${user} = {
|
|
programs.git.userEmail = "christoph@schmatzler.com";
|
|
};
|
|
}
|