From f48c4fead04c6bfdbd4a08f116f71d8cf46b3bb3 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 7 Mar 2023 23:05:58 -0800 Subject: Rewrite picom configuration The previous version of the configuration was complaining that my ‘config’ section was not a valid value for the ‘package’ section. I didn't quite understand why it would complain about that, so I decided to use my now improved Guix Home knowledge (compared to when I copied the previous version) to just rewrite the service in a way that matches my other services. --- oni/home/config/data.scm | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'oni/home/config') diff --git a/oni/home/config/data.scm b/oni/home/config/data.scm index 11628f3..0126299 100644 --- a/oni/home/config/data.scm +++ b/oni/home/config/data.scm @@ -32,15 +32,14 @@ (define data-picom-service (service home-picom-service-type (home-picom-configuration - (config - '((detect-transient . #t) - (shadow . #t) - (wintypes ((dnd ((shadow . #f))) - (dock ((shadow . #f))))) - (shadow-radius . 10) - (shadow-exclude ("name = 'mowedline'" - "class_g = 'trayer'" - "bounding_shaped"))))))) + (detect-transient #t) + (shadow #t) + (wintypes '((dnd (shadow . #f)) + (dock (shadow . #f)))) + (shadow-radius 10) + (shadow-exclude '("name = 'mowedline'" + "class_g = 'trayer'" + "bounding_shaped"))))) (home-environment (packages (list (specification->package+output "glibc-locales") -- cgit v1.3-2-g0d8e