diff options
author | bd <bdunahu@colostate.edu> | 2024-05-26 14:21:39 -0600 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-05-26 14:21:39 -0600 |
commit | a89ee9ed7f52341b67b55b3f7337a27938508764 (patch) | |
tree | 908e89855e87a2982fa73c111f9fbc4487b6d26c /.config/guix/modules/ssh.scm | |
parent | 20e9f64da4bd505c50211c3041c8ae25093643ed (diff) |
Refactored home service file structure to be more streamlined
Diffstat (limited to '.config/guix/modules/ssh.scm')
-rw-r--r-- | .config/guix/modules/ssh.scm | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/.config/guix/modules/ssh.scm b/.config/guix/modules/ssh.scm deleted file mode 100644 index 81355a1..0000000 --- a/.config/guix/modules/ssh.scm +++ /dev/null @@ -1,22 +0,0 @@ -(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 "ivaldi") - (host-name "192.168.1.98") - (user "bdunahu")) - (openssh-host (name "heimdallr") - (host-name "operationnull.com") - (user "root")))))))) |