From 95489906e160ed78d25ffe665a46f674ffc8264a Mon Sep 17 00:00:00 2001 From: Alen Date: Thu, 14 Sep 2023 01:08:16 +0400 Subject: Add basic .ssh/config and .ssh/authorized_keys --- .chezmoi.toml.tmpl | 6 ++++++ private_dot_ssh/authorized_keys.tmpl | 5 +++++ private_dot_ssh/private_config.tmpl | 15 +++++++++++++++ private_dot_ssh/private_control/.keep | 0 4 files changed, 26 insertions(+) create mode 100644 private_dot_ssh/authorized_keys.tmpl create mode 100644 private_dot_ssh/private_config.tmpl create mode 100644 private_dot_ssh/private_control/.keep diff --git a/.chezmoi.toml.tmpl b/.chezmoi.toml.tmpl index 16c95bb..671e923 100644 --- a/.chezmoi.toml.tmpl +++ b/.chezmoi.toml.tmpl @@ -16,3 +16,9 @@ [data.todo] personalPriority = {{ promptString "personal todo.txt priority words" $defaultUsername | quote }} + +[data.github] + username = {{ promptString "GitHub username" "n/a" | quote }} + +[data.ssh] + user = {{ promptString "SSH default user" $defaultUsername | quote }} diff --git a/private_dot_ssh/authorized_keys.tmpl b/private_dot_ssh/authorized_keys.tmpl new file mode 100644 index 0000000..b0a1bbe --- /dev/null +++ b/private_dot_ssh/authorized_keys.tmpl @@ -0,0 +1,5 @@ +{{- if ne .github.username "n/a" -}} +{{ range gitHubKeys .github.username -}} +{{ .Key }} +{{ end -}} +{{- end -}} diff --git a/private_dot_ssh/private_config.tmpl b/private_dot_ssh/private_config.tmpl new file mode 100644 index 0000000..d166a06 --- /dev/null +++ b/private_dot_ssh/private_config.tmpl @@ -0,0 +1,15 @@ +Host chaos.usbx.me chaos + HostName chaos.usbx.me + Port 22 + User alen1 + +Host * + User {{ .ssh.user }} + Port 22 + IdentitiesOnly yes + ServerAliveCountMax 2147483 + ServerAliveInterval 30 + HashKnownHosts yes + ControlMaster auto + ControlPersist 60m # yes + ControlPath ~/.ssh/control/%h-%C diff --git a/private_dot_ssh/private_control/.keep b/private_dot_ssh/private_control/.keep new file mode 100644 index 0000000..e69de29 -- cgit 1.4.1-2-gfad0