commit c2ea3cc99b845f168ed32d3ed1a8b5bb6bbc5933
parent 942994fd113a0e204fd57a29be301f4fbd00677f
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 3 Dec 2018 17:17:10 +0100
modularization
Diffstat:
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/guix/config.scm b/guix/config.scm
@@ -14,8 +14,6 @@
;;; You should have received a copy of the GNU Affero General Public License
;;; along with GNU Taler. If not, see <http://www.gnu.org/licenses/>.
-;; Load modules relative to the script name.
-(set! %load-path (cons (current-source-directory) %load-path))
(use-modules
(srfi srfi-1)
@@ -23,8 +21,12 @@
(gnu)
(guix)
(guix utils)
- (guix gexp)
- (taler-helpers))
+ (guix gexp))
+
+;; Load modules relative to the script name.
+(set! %load-path (cons (current-source-directory) %load-path))
+
+(use-modules (taler-helpers))
(use-system-modules nss)
(use-service-modules networking ssh version-control cgit databases admin web)