diff options
Diffstat (limited to 'etc/guix/home.scm')
-rw-r--r-- | etc/guix/home.scm | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 3adb0f8..3604162 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -515,26 +515,28 @@ (slurp (string-append (getenv "XDG_CONFIG_HOME") "/sh/cronjob.sh")))))) (services - (list - (service (home-service 'clipmenu clipmenu "/bin/clipmenud")) - (service (home-service 'dunst dunst "/bin/dunst")) - (service (home-service 'poweralertd poweralertd "/bin/poweralertd")) - (service home-xdg-base-directories-service-type - (home-xdg-base-directories-configuration - (cache-home (xdg "var/cache")) - (config-home (xdg "etc")) - (data-home (xdg "share")) - (log-home (xdg "var/log")) - (state-home (xdg "var/state")))) - (service home-syncthing-service-type) - (simple-service 'my-shell-profile home-shell-profile-service-type - (list (plain-file - "my-profile" - (format #f - #"- - export XDG_PREFIX="~a" - . "$XDG_CONFIG_HOME"/sh/rc"# - xdg-prefix)))) - (service home-mcron-service-type - (home-mcron-configuration - (jobs cronjobs)))))) + (append + %base-home-services + (list + (service (home-service 'clipmenu clipmenu "/bin/clipmenud")) + (service (home-service 'dunst dunst "/bin/dunst")) + (service (home-service 'poweralertd poweralertd "/bin/poweralertd")) + (service home-xdg-base-directories-service-type + (home-xdg-base-directories-configuration + (cache-home (xdg "var/cache")) + (config-home (xdg "etc")) + (data-home (xdg "share")) + (log-home (xdg "var/log")) + (state-home (xdg "var/state")))) + (service home-syncthing-service-type) + (simple-service 'my-shell-profile home-shell-profile-service-type + (list (plain-file + "my-profile" + (format #f + #"- + export XDG_PREFIX="~a" + . "$XDG_CONFIG_HOME"/sh/rc"# + xdg-prefix)))) + (service home-mcron-service-type + (home-mcron-configuration + (jobs cronjobs))))))) |