aboutsummaryrefslogtreecommitdiff
path: root/config.scm
diff options
context:
space:
mode:
Diffstat (limited to 'config.scm')
-rw-r--r--config.scm12
1 files changed, 0 insertions, 12 deletions
diff --git a/config.scm b/config.scm
deleted file mode 100644
index 3c6ebbb0..00000000
--- a/config.scm
+++ /dev/null
@@ -1,12 +0,0 @@
-;;; Preliminary config file for the system.
-;;; Currently loaded by main, and requires that `calendar-files`
-;;; is set to a list of files (or directories).
-
-
-(use-modules (srfi srfi-26)
- (ice-9 ftw))
-
-(define calendar-files
- (let ((path (string-append (getenv "HOME") "/.calendars/")))
- (map (cut string-append path <>)
- (scandir path (lambda (str) (not (char=? #\. (string-ref str 0))))))))