aboutsummaryrefslogtreecommitdiff
path: root/config.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-03-31 16:46:02 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-03-31 16:46:02 +0200
commit35a413167e323f8b0c9ea40fe7599ffb50e9e321 (patch)
tree9b00917547b4a3e756aab29543fbb6574e0f7788 /config.scm
parentFix IPv6 binding for server. (diff)
downloadcalp-35a413167e323f8b0c9ea40fe7599ffb50e9e321.tar.gz
calp-35a413167e323f8b0c9ea40fe7599ffb50e9e321.tar.xz
Attempt at decentralized configuration system.
Placing all possible configuration items in a central (parameters) module scales really badly. This idea that any module can register configuration parameters is better. The current implementation however has the drawback that it requires that the module exposing the parameter is loaded before the value can be sat, but that scales even worse. A probable solution would be to abandon binding everything to guile's module system, and instead let (util config) provide a `conf-ref' and a `conf-set!' procedures. A `define-configuration' similar to emacs `defcustom' could be of use, mainly for retroactively type checking parameters.
Diffstat (limited to 'config.scm')
-rw-r--r--config.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/config.scm b/config.scm
index 9b56b471..832cad23 100644
--- a/config.scm
+++ b/config.scm
@@ -4,13 +4,15 @@
(use-modules (vcomponent))
-(use-modules (srfi srfi-26)
- (srfi srfi-88)
+(use-modules (srfi srfi-88)
(ice-9 regex)
- (ice-9 rdelim)
+ ;; (ice-9 rdelim)
(sxml simple)
(glob)
- (datetime util))
+ (datetime util)
+
+ (util config all)
+ )
(calendar-files (glob "~/.local/var/cal/*"))