he-config-bare-bones.scm 698 B

12345678910111213141516171819202122232425
  1. (use-modules (gnu home)
  2. (gnu home services)
  3. (gnu home services shells)
  4. (gnu services)
  5. (gnu packages admin)
  6. (guix gexp))
  7. (home-environment
  8. (packages (list htop))
  9. (services
  10. (list
  11. (service home-bash-service-type
  12. (home-bash-configuration
  13. (guix-defaults? #t)
  14. (bash-profile '("\
  15. export HISTFILE=$XDG_CACHE_HOME/.bash_history"))))
  16. (simple-service 'test-config
  17. home-files-service-type
  18. (list `("config/test.conf"
  19. ,(plain-file "tmp-file.txt"
  20. "the content of ~/.config/test.conf")))))))