23 lines
565 B
Nix
23 lines
565 B
Nix
{...}: {
|
|
programs.ssh.knownHosts = {
|
|
"[git.everest.tailscale]:4222".publicKey = ''
|
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKoUcWx56NZ3kqydN3d0gLNz6SlBm1ArkHhqR9Fwd8qs
|
|
'';
|
|
};
|
|
home-manager.users.toast = {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Toast";
|
|
userEmail = "toast003@tutamail.com";
|
|
delta = {
|
|
enable = true;
|
|
catppuccin.enable = true;
|
|
};
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
diff.colorMoved = "default";
|
|
commit.verbose = "true";
|
|
};
|
|
};
|
|
};
|
|
}
|