diff --git a/kulupu/packages/gotosocial.scm b/kulupu/packages/gotosocial.scm index 2159795..fbc45d4 100644 --- a/kulupu/packages/gotosocial.scm +++ b/kulupu/packages/gotosocial.scm @@ -1,6 +1,5 @@ (define-module (kulupu packages gotosocial) - #:use-module ((guix licenses) - #:prefix license:) + #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (gnu packages golang) #:use-module (gnu packages shells) diff --git a/kulupu/services/activity-pub.scm b/kulupu/services/activity-pub.scm index e3eb19e..89914c7 100644 --- a/kulupu/services/activity-pub.scm +++ b/kulupu/services/activity-pub.scm @@ -39,12 +39,6 @@ (run-dir (string "/var/run/gotosocial") "GTS runtime directory") - (storage-dir - (string "/var/lib/gotosocial/storage") - "Path to directory used for storage") - (cert-dir - (string "/var/lib/gotosocial/storage/certs") - "Location of cert directory to use") (database-type (string "sqlite") "Database type to use, default to sqlite") @@ -54,7 +48,7 @@ (define (gotosocial-shepherd-service config) (match-record config - (gotosocial gotosocial-frontend config-file port work-dir run-dir cert-dir storage-dir host database-type database-address) + (gotosocial gotosocial-frontend config-file port work-dir run-dir host database-type database-address) (let* ((gts (file-append gotosocial "/bin/gotosocial")) (gts-frontend-assets (file-append gotosocial-frontend "/gotosocial/web/assets")) (gts-frontend-templates (file-append gotosocial-frontend "/gotosocial/web/template"))