6 lines
170 B
Scheme
6 lines
170 B
Scheme
![]() |
(define-module (msg shell)
|
||
|
#:export (shell))
|
||
|
|
||
|
(define* (shell)
|
||
|
(system "ssh -o StrictHostKeyChecking=no -X -i $HOME/.guix/ssh-cert/msg_rsa admin@127.0.0.1 -p 9001"))
|