summaryrefslogtreecommitdiff
path: root/suweren/home.scm
diff options
context:
space:
mode:
Diffstat (limited to 'suweren/home.scm')
-rw-r--r--suweren/home.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/suweren/home.scm b/suweren/home.scm
index c441b6f..289ac9a 100644
--- a/suweren/home.scm
+++ b/suweren/home.scm
@@ -34,7 +34,9 @@
;; update-commands
#:use-module (suweren update))
-(define-public %suweren-home-services
+;; string ->
+;; (record service)
+(define-public (%suweren-home-services system user)
(let* ((packages (list gnupg
librewolf))
@@ -45,7 +47,8 @@
(profile (simple-service 'default-home-packages
home-profile-service-type
packages))
- (shepherd (service home-shepherd-service-type)))
+ (shepherd (service home-shepherd-service-type))
+ (update-commands* (update-commands system user)))
(list bash
dbus
pipewire
@@ -53,4 +56,4 @@
shepherd
suweren-home-fontconfig-service-type
suweren-home-xdg-configuration-files-extension
- update-commands)))
+ update-commands*)))