diff options
Diffstat (limited to '.config/guix/modules/ssh.scm')
-rw-r--r-- | .config/guix/modules/ssh.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/guix/modules/ssh.scm b/.config/guix/modules/ssh.scm new file mode 100644 index 0000000..0e80c25 --- /dev/null +++ b/.config/guix/modules/ssh.scm @@ -0,0 +1,19 @@ +(define-module (ssh) + #:use-module (gnu home services) + #:use-module (gnu home services ssh)) + + +(define-public ssh-service + (list + (service home-openssh-service-type + (home-openssh-configuration + (hosts + (list (openssh-host (name "hati") + (host-name "192.168.1.76") + (user "bdunahu")) + (openssh-host (name "vali") + (host-name "192.168.1.64") + (user "bdunahu")) + (openssh-host (name "perch") + (host-name "perch.cs.colostate.edu") + (user "bdunahu")))))))) |