14 lines
161 B
Nix
14 lines
161 B
Nix
{ ... }:
|
|
|
|
{
|
|
home.username = "till";
|
|
programs.git.settings.user = {
|
|
name = "Till";
|
|
email = "till@ktiu.net";
|
|
};
|
|
|
|
imports = [
|
|
./ssh.nix
|
|
];
|
|
|
|
}
|