13 lines
233 B
Nix
13 lines
233 B
Nix
{
|
|
home = {
|
|
name = "Bob";
|
|
dir = "/home/bob";
|
|
};
|
|
|
|
git = {
|
|
userName = "Bob Ross";
|
|
userEmail = "bross@example.com";
|
|
# gpg --list-secret-keys
|
|
gpgSigningKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
|
};
|
|
}
|