system-configuration/modules/home/utils.scm

utils.scm

1
(define-module (home utils)
2
  #:export (home-file))
3
4
(define (home-file outputs . path)
5
  (apply string-append (assoc-ref outputs "out") "/" path))
6