aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-01-19 18:31:37 -0300
committerEuAndreh <eu@euandre.org>2025-01-19 18:35:17 -0300
commit2630bdf5f9a7a28fc6c74ac27606820fed0c685f (patch)
treed3bce79266224cb8bcd61fdc455ecf0b975bb898 /etc
parentetc/sh/rc: Parameterize timeout of "vcs ps1" (diff)
downloaddotfiles-2630bdf5f9a7a28fc6c74ac27606820fed0c685f.tar.gz
dotfiles-2630bdf5f9a7a28fc6c74ac27606820fed0c685f.tar.xz
etc/guix/home.scm: Include %base-home-service in services list
Diffstat (limited to 'etc')
-rw-r--r--etc/guix/home.scm48
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)))))))