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