summaryrefslogtreecommitdiff
path: root/.config/guix/modules/ssh.scm
blob: 0e80c25be0dfe2ab75734878f8d74734cbfb3a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"))))))))