From 051034ba2aa006bc555be99153acae611f98db40 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 13 Jun 2022 22:11:10 -0700 Subject: Fix configurations for picom, kitty, and rofi These configurations were set up wrong, putting the configuration files in ‘config/*’ instead of ‘.config/*’. The ‘home-xdg-configuration-files-service-type’ takes care of putting them in the right directory. I didn't know about this service before, it doesn't show up when I ‘guix home search home’ --- oni/home/services/xdisorg.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'oni/home/services/xdisorg.scm') diff --git a/oni/home/services/xdisorg.scm b/oni/home/services/xdisorg.scm index 1f3bdf7..a207e20 100644 --- a/oni/home/services/xdisorg.scm +++ b/oni/home/services/xdisorg.scm @@ -108,7 +108,7 @@ (string-join (map format-rofi-theme theme) "\n")) (define (home-rofi-files-service conf) - `(("config/rofi/config.rasi" + `(("rofi/config.rasi" ,(apply mixed-text-file "config.rasi" (append @@ -118,7 +118,7 @@ ;; Apply theme (if (not (eq? (home-rofi-configuration-theme conf) '())) (list "\n@theme \"guix\"\n") '())))) - ("config/rofi/guix.rasi" + ("rofi/guix.rasi" ,(mixed-text-file "guix.rasi" (serialize-rofi-theme @@ -149,7 +149,7 @@ (service-type (name 'home-rofi) (extensions (list (service-extension - home-files-service-type + home-xdg-configuration-files-service-type home-rofi-files-service) (service-extension home-profile-service-type -- cgit v1.2.3-54-g00ecf