From dd9e3e3a3a95d2436378878cf903c8eab020464b Mon Sep 17 00:00:00 2001 From: Skylar Hill Date: Sun, 7 Apr 2024 18:24:14 -0500 Subject: [PATCH] Add local IPs of self-hosted services --- Sanderson.org | 9 ++++++++- sanderson.scm | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Sanderson.org b/Sanderson.org index 63c5d13..a8935ad 100644 --- a/Sanderson.org +++ b/Sanderson.org @@ -46,7 +46,14 @@ (service syncthing-service-type (syncthing-configuration (user "skylar") - (home "/home/skylar")))) + (home "/home/skylar"))) + (simple-service 'add-hosts + hosts-service-type + (list (host "192.168.254.167" "skylarhill.me") + (host "192.168.254.167" "vtt" + '("vtt.skylarhill.me")) + (host "192.168.254.167" "files" + '("files.skylarhill.me"))))) ;; This is the default list of services we ;; are appending to. diff --git a/sanderson.scm b/sanderson.scm index 2a30ebf..193785e 100644 --- a/sanderson.scm +++ b/sanderson.scm @@ -41,7 +41,14 @@ (service syncthing-service-type (syncthing-configuration (user "skylar") - (home "/home/skylar")))) + (home "/home/skylar"))) + (simple-service 'add-hosts + hosts-service-type + (list (host "192.168.254.167" "skylarhill.me") + (host "192.168.254.167" "vtt" + '("vtt.skylarhill.me")) + (host "192.168.254.167" "files" + '("files.skylarhill.me"))))) ;; This is the default list of services we ;; are appending to.