guix: home: Fix imports.

Julien LepillerThu Sep 19 23:26:55+0200 2019

2671144

guix: home: Fix imports. guix/scripts/home.scm: Fix imports.

guix/scripts/home.scm

3232
  #:use-module (ice-9 match)
3333
  #:use-module (srfi srfi-1)
3434
  #:use-module (srfi srfi-26)
35+
  #:use-module (srfi srfi-35)
3536
  #:use-module (srfi srfi-37)
3637
  #:export (guix-home))
3738

108109
                 (lambda (opt name arg result)
109110
                   (alist-cons 'skip-safety-checks? #t result)))
110111
111-
         (option '("share") #t #f
112-
                 (lambda (opt name arg result)
113-
                   (alist-cons 'file-system-mapping
114-
                               (specification->file-system-mapping arg #t)
115-
                               result)))
116-
         (option '("expose") #t #f
117-
                 (lambda (opt name arg result)
118-
                   (alist-cons 'file-system-mapping
119-
                               (specification->file-system-mapping arg #f)
120-
                               result)))
121-
122112
         (option '(#\n "dry-run") #f #f
123113
                 (lambda (opt name arg result)
124114
                   (alist-cons 'dry-run? #t (alist-cons 'graft? #f result))))