blob: 5c137b252baf603b1d5387b8093a22619352b057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
;;; Copyright © 2026 bdunahu <bdunahu@operationnull.com>
(define-module (kolwynia home bdunahu ssh)
#:use-module (gnu home services ssh)
#:export (garmr
heimdallr
nott
surt
codeberg))
;;; Commentary:
;;; Code:
(define garmr
(openssh-host (name "garmr")
(host-name "localhost")
(user "root")))
(define heimdallr
(openssh-host (name "heimdallr")
(host-name "operationnull.com")
(user "root")))
(define nott
(openssh-host (name "nott")
(host-name "localhost")
(user "bdunahu")
(port 2222)
(extra-content " UserKnownHostsFile=/dev/null
StrictHostKeyChecking=no
")))
(define surt
(openssh-host (name "surt")
(host-name "192.168.1.250")
(user "root")))
(define codeberg
(openssh-host (name "codeberg.org")
(host-name "codeberg.org")
(user "git")
(identity-file "~/.ssh/codeberg")))
;;; ssh.scm ends here
|