diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 11:43:36 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 11:53:53 +0100 |
commit | 0218bf413b4bf4dcc2fbd59922a11f6377e80f75 (patch) | |
tree | e76d292b4ba8929629628af33b7fe85cb40a3350 /home-configuration.scm | |
parent | 68d0eafa23e5f71517b06e83733a2e1059bb96a0 (diff) |
Home configuration: adjust package related binding names
* This will enable future merge with the system packages.
* In line with this change, the service name is adjusted.
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index c68f95a..12c1424 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -10,7 +10,7 @@ (compose list specification->package+output)) -(define packages +(define home-packages '("cpupower" "dconf-editor" "emacs-no-x" @@ -36,9 +36,9 @@ "unzip" "zip")) -(define home-packages +(define packages (map list-to-package-output - packages)) + home-packages)) (define config-prefix "/home/marek/src/guix-config/") @@ -170,9 +170,9 @@ home-files-service-type home-files)) -(define home-services +(define services `(,home-bash-service ,dot-files-service)) -(home-environment (packages home-packages) - (services home-services)) +(home-environment (packages packages) + (services services)) |