(package bash)
    "Packages to be installed by the service.")
   (bash-profile
-   (string)
+   (string "bash/.bash_profile")
    "Dotfile for login shells.")
   (bashrc
-   (string)
+   (string "bash/.bashrc")
    "Dotfile for interactive non-login shells."))
 
 (define (install-bash-packages config)
 
 (home-environment
  (packages (list))
  (services
-  (list (service home-bash-service-type
-                (home-bash-configuration
-                 (bash-profile "bash/.bash_profile")
-                 (bashrc "bash/.bashrc")))
+  (list (service home-bash-service-type)
        (service home-symlink-service-type
                 (list "bash/.config/profile.d/10-xdg.sh"
                       "bash/.config/profile.d/20-less.sh"))