]> git.ekhem.eu.org Git - guix.git/commitdiff
[bash] Specify default configuration files.
authorJakub Czajka <jakub@ekhem.eu.org>
Thu, 22 Dec 2022 19:35:52 +0000 (20:35 +0100)
committerJakub Czajka <jczajka@google.com>
Sun, 24 Dec 2023 18:53:07 +0000 (19:53 +0100)
conf/home/bash.scm
home.scm

index cc16773188b037c19d378db65cd1257734d7f4fe..d5dbd6b9f964c6c1065316e047ea9b226a72bc55 100644 (file)
    (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)
index 39d7da8f43576214a6c0b7773f514c09ca4304f6..a9de340747c4c5f4532f97275e44932fefb138e5 100644 (file)
--- a/home.scm
+++ b/home.scm
 (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"))