notebook.scm 626 B

1234567891011121314151617181920212223
  1. ;; GuixSD configuration file for the desktop machine.
  2. ;; Copyright © 2024 Oleg Pykhalov <go.wigust@gmail.com>
  3. ;; Released under the GNU GPLv3 or any later version.
  4. (use-modules (srfi srfi-26)
  5. (manifests wm)
  6. (utils))
  7. (define %source-dir
  8. (dirname (current-filename)))
  9. (combined-manifest-from-files
  10. (append (map (cut string-append %source-dir "/" <>)
  11. '("notebook-packages.scm"
  12. "deprecated.scm"
  13. "desktop.scm"
  14. "dotfiles.scm"
  15. "emacs.scm"
  16. "obs.scm"
  17. "telegram.scm"))
  18. (list manifest-wm)))