guix.scm 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2022 Reily Siegel <mail@reilysiegel.com>
  3. ;;;
  4. ;;; This file is part of GNU Guix.
  5. ;;;
  6. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or (at
  9. ;;; your option) any later version.
  10. ;;;
  11. ;;; GNU Guix is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;;; GNU General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (gnu home services guix)
  19. #:use-module (gnu home services)
  20. #:use-module (guix channels)
  21. #:use-module (guix gexp)
  22. #:use-module (ice-9 pretty-print)
  23. #:use-module (srfi srfi-1)
  24. #:export (home-channels-service-type))
  25. (define (channels-xdg-files channels)
  26. `(("guix/channels.scm"
  27. ,(plain-file
  28. "channels.scm"
  29. (call-with-output-string
  30. (lambda (port)
  31. (pretty-print (cons 'list (map channel->code channels)) port)))))))
  32. (define home-channels-service-type
  33. (service-type
  34. (name 'home-channels)
  35. (default-value %default-channels)
  36. (compose concatenate)
  37. (extend append)
  38. (extensions
  39. (list (service-extension home-xdg-configuration-files-service-type
  40. channels-xdg-files)))
  41. (description "Manages the per-user Guix channels specification.")))