Guest User

useless errors

a guest
Jan 27th, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. ;; guixito/services/dunst-notifications.scm
  2. (define-module (guixito services dunst-notifications)
  3. #:use-module (gnu services)
  4. #:use-module (gnu home)
  5. #:use-module (gnu home services)
  6. #:use-module (gnu home services desktop))
  7.  
  8. ;; No docs on how to modularize/extend simple services :/
  9. (define-public dunst-services
  10. (simple-service 'dunst-cfg-service
  11. home-xdg-configuration-files-service-type
  12. `(
  13. ("dunst/dunstrc"
  14. ,(local-file
  15. "./config/dunst/dunstrc")))))
  16.  
  17.  
  18. ;; home-config.scm
  19. (use-modules (gnu home)
  20. (gnu home services)
  21. (gnu home services desktop)
  22. (gnu home services dotfiles)
  23. (gnu home services shepherd)
  24. (gnu home services sound)
  25. (gnu packages)
  26. (gnu services)
  27. (guix gexp)
  28. (gnu home services shells)
  29.  
  30. ;; Load GUIXito packages
  31. (guixito services dunst-notifications)
  32. (guixito services dunst-notifications)
  33. (guixito services dunst-notifications)
  34. (guixito services dunst-notifications)
  35. (guixito services dunst-notifications))
  36.  
  37. ;; WTF is this supposed to mean? Didn't this interpreter see the module
  38. ;; declared 5 times!?!?!?!?!?!?!?!?!?!
  39.  
  40. error: dunst-services: variable sin asignar
  41. consejo: ¿Se ha olvidado de `(use-modules (guixito services dunst-notifications))'?
  42.  
Advertisement
Add Comment
Please, Sign In to add comment