aboutsummaryrefslogtreecommitdiffstats
path: root/oni
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-06-13 22:11:10 -0700
committerGravatar Tom Willemse2022-06-13 22:11:10 -0700
commit051034ba2aa006bc555be99153acae611f98db40 (patch)
treed0a8ecd26397f956e3e7057d6a5737adbd4c2534 /oni
parent72d65a09e2f4bd489b7d40b98855e52089e40ae0 (diff)
downloadnew-dotfiles-051034ba2aa006bc555be99153acae611f98db40.tar.gz
new-dotfiles-051034ba2aa006bc555be99153acae611f98db40.zip
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’
Diffstat (limited to 'oni')
-rw-r--r--oni/home/services/compton.scm4
-rw-r--r--oni/home/services/kitty.scm4
-rw-r--r--oni/home/services/xdisorg.scm6
3 files changed, 7 insertions, 7 deletions
diff --git a/oni/home/services/compton.scm b/oni/home/services/compton.scm
index a1aedf6..1097ec6 100644
--- a/oni/home/services/compton.scm
+++ b/oni/home/services/compton.scm
@@ -82,7 +82,7 @@
(home-picom-configuration-config config))))
(define (home-picom-files-service config)
- `(("config/picom/picom.conf"
+ `(("picom/picom.conf"
,(home-picom-config-file config))))
(define (home-picom-profile-service config)
@@ -116,7 +116,7 @@
(service-type (name 'home-picom)
(extensions
(list (service-extension
- home-files-service-type
+ home-xdg-configuration-files-service-type
home-picom-files-service)
(service-extension
home-profile-service-type
diff --git a/oni/home/services/kitty.scm b/oni/home/services/kitty.scm
index cb44be3..78056da 100644
--- a/oni/home/services/kitty.scm
+++ b/oni/home/services/kitty.scm
@@ -31,7 +31,7 @@
(string-join (map serialize-kitty-setting (home-kitty-configuration-configuration config)) "\n" 'suffix))
(define (kitty-home-files config)
- `(("config/kitty/kitty.conf"
+ `(("kitty/kitty.conf"
,(mixed-text-file
"kitty.conf"
(serialize-kitty-config config)))))
@@ -44,7 +44,7 @@
(name 'home-kitty)
(extensions
(list (service-extension
- home-files-service-type
+ home-xdg-configuration-files-service-type
kitty-home-files)
(service-extension
home-profile-service-type
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