diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-03 19:28:31 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-03 19:44:51 +0200 |
commit | 4253ba429a6d5f6c483a8867f6c627253c8557b1 (patch) | |
tree | ac3fa7604717216cd135e0ed72a54d6667fbace8 /systems/izumi | |
parent | 144cd8e40b68f2fc84a15005bcaf63e4ad9c0ad2 (diff) |
fix typo in configuration of radicale
Diffstat (limited to 'systems/izumi')
-rw-r--r-- | systems/izumi/izumi.org | 9 | ||||
-rw-r--r-- | systems/izumi/system-configuration.scm | 9 |
2 files changed, 8 insertions, 10 deletions
diff --git a/systems/izumi/izumi.org b/systems/izumi/izumi.org index 9d7b91e..673148e 100644 --- a/systems/izumi/izumi.org +++ b/systems/izumi/izumi.org @@ -689,11 +689,10 @@ ( service radicale-service-type ( radicale-configuration ( auth - ( list - ( radicale-auth-configuration - ( type 'htpasswd ) - ( htpasswd-filename radicale_keys ) - ( htpasswd-encryption 'plain ) )) ) ) ) + ( radicale-auth-configuration + ( type 'htpasswd ) + ( htpasswd-filename radicale-keys ) + ( htpasswd-encryption 'plain ) ) ) ) ) ( simple-service 'base-profile profile-service-type ( append %base-packages ( list ) ) ) diff --git a/systems/izumi/system-configuration.scm b/systems/izumi/system-configuration.scm index a97689b..7353d0d 100644 --- a/systems/izumi/system-configuration.scm +++ b/systems/izumi/system-configuration.scm @@ -679,11 +679,10 @@ ( service radicale-service-type ( radicale-configuration ( auth - ( list - ( radicale-auth-configuration - ( type 'htpasswd ) - ( htpasswd-filename radicale_keys ) - ( htpasswd-encryption 'plain ) )) ) ) ) + ( radicale-auth-configuration + ( type 'htpasswd ) + ( htpasswd-filename radicale-keys ) + ( htpasswd-encryption 'plain ) ) ) ) ) ( simple-service 'base-profile profile-service-type ( append %base-packages ( list ) ) ) |