Add ssh configuration
parent
fdda21e4e5
commit
ec0f2b0d46
|
@ -9,6 +9,7 @@
|
||||||
(gnu home services symlink-manager)
|
(gnu home services symlink-manager)
|
||||||
(gnu home services guix)
|
(gnu home services guix)
|
||||||
(gnu home services gnupg)
|
(gnu home services gnupg)
|
||||||
|
(gnu home services ssh)
|
||||||
(gnu home services syncthing))
|
(gnu home services syncthing))
|
||||||
|
|
||||||
(home-environment
|
(home-environment
|
||||||
|
@ -32,8 +33,6 @@
|
||||||
"pijul"
|
"pijul"
|
||||||
"git"
|
"git"
|
||||||
"starship"
|
"starship"
|
||||||
"openssh"
|
|
||||||
"x11-ssh-askpass"
|
|
||||||
; "hyprland"
|
; "hyprland"
|
||||||
"inkscape"
|
"inkscape"
|
||||||
"lm-sensors"
|
"lm-sensors"
|
||||||
|
@ -69,6 +68,45 @@
|
||||||
|
|
||||||
(services
|
(services
|
||||||
(list (service home-syncthing-service-type)
|
(list (service home-syncthing-service-type)
|
||||||
|
(service home-openssh-service-type
|
||||||
|
(home-openssh-configuration
|
||||||
|
(hosts
|
||||||
|
(list (openssh-host (name "utdallas1")
|
||||||
|
(host-name "cs1.utdallas.edu")
|
||||||
|
(user "edr220000"))
|
||||||
|
(openssh-host (name "utdallas2")
|
||||||
|
(host-name "cs2.utdallas.edu")
|
||||||
|
(user "edr220000"))
|
||||||
|
(openssh-host (name "utdallas3")
|
||||||
|
(host-name "cs3.utdallas.edu")
|
||||||
|
(user "edr220000"))
|
||||||
|
(openssh-host (name "utdpub")
|
||||||
|
(host-name "pubssh.utdallas.edu")
|
||||||
|
(user "edr220000"))
|
||||||
|
(openssh-host (name "utdallas1-proxy")
|
||||||
|
(host-name "cs1.utdallas.edu")
|
||||||
|
(user "edr220000")
|
||||||
|
(proxy
|
||||||
|
(list (proxy-jump
|
||||||
|
(host-name "pubssh.utdallas.edu")
|
||||||
|
(user "edr220000")))))
|
||||||
|
(openssh-host (name "utdallas3-proxy")
|
||||||
|
(host-name "cs3.utdallas.edu")
|
||||||
|
(user "edr220000")
|
||||||
|
(proxy
|
||||||
|
(list (proxy-jump
|
||||||
|
(host-name "pubssh.utdallas.edu")
|
||||||
|
(user "edr220000")))))
|
||||||
|
(openssh-host (name "proxmox")
|
||||||
|
(host-name "10.0.0.2")
|
||||||
|
(user "ethan"))
|
||||||
|
(openssh-host (name "docker")
|
||||||
|
(host-name "10.10.10.8")
|
||||||
|
(user "sudoer777"))
|
||||||
|
(openssh-host (name "git.sudoer777.dev")
|
||||||
|
(host-name "git.sudoer777.dev")
|
||||||
|
(user "git")
|
||||||
|
(port 222))))))
|
||||||
(service home-fish-service-type
|
(service home-fish-service-type
|
||||||
(home-fish-configuration
|
(home-fish-configuration
|
||||||
(config
|
(config
|
||||||
|
|
Loading…
Reference in New Issue