diff options
author | bd <bdunahu@colostate.edu> | 2024-01-10 19:44:21 -0700 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-01-10 19:44:21 -0700 |
commit | 1ced565816120bfcc351daf9fc3a4e851162e3b7 (patch) | |
tree | 93e9c23660cd07f4dba861f334b23c03d322f48c /.config/guix/modules/ssh.scm | |
parent | da5922a476cebdbbf338f0192165dbbbcd3f7b6f (diff) |
Initial commit of new repository structure
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")))))))) |