diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/guix/home.scm | 15 | ||||
-rw-r--r-- | etc/ssh/config | 5 |
2 files changed, 6 insertions, 14 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 0b61883..6835efc 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -108,22 +108,9 @@ enable-ssh-support pinentry-program "# pinentry-gtk2 "/bin/pinentry-gtk-2\n")) -(define ssh.conf - (plain-file "ssh.conf" - (string-replace-substring #"- - Host * - UserKnownHostsFile @XDG_CONFIG_HOME@/ssh/known_hosts - - Include ~/dev/libre/servers/src/infrastructure/ssh.conf - Include ~/dev/others/lawtech/src/infrastructure/ssh.conf - "# - "@XDG_CONFIG_HOME@" - (getenv "XDG_CONFIG_HOME")))) - (define config-files `(("gnupg/gpg-agent.conf" ,gpg-agent.conf) - ("git/config-extra" ,gitconfig-extra) - ("ssh/config" ,ssh.conf))) + ("git/config-extra" ,gitconfig-extra))) (define dot-config (let ((prefix-with-config diff --git a/etc/ssh/config b/etc/ssh/config new file mode 100644 index 0000000..8df05c0 --- /dev/null +++ b/etc/ssh/config @@ -0,0 +1,5 @@ +Host * + UserKnownHostsFile ${XDG_CONFIG_HOME}/ssh/known_hosts + +Include ~/dev/libre/servers/src/infrastructure/ssh.conf +Include ~/dev/others/lawtech/src/infrastructure/ssh.conf |