From 1ced565816120bfcc351daf9fc3a4e851162e3b7 Mon Sep 17 00:00:00 2001 From: bd Date: Wed, 10 Jan 2024 19:44:21 -0700 Subject: Initial commit of new repository structure --- .config/guix/modules/ssh.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .config/guix/modules/ssh.scm (limited to '.config/guix/modules/ssh.scm') 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")))))))) -- cgit v1.2.3