~ruther/guix-config

ref: 60fb3c8d3ded7e1bafac2d68cbcd1d19a56f5443 guix-config/home/modules/ruther/home/services/dconf.scm -rw-r--r-- 4.9 KiB
60fb3c8d — Rutherther feat(home): add support for resetting no longer managed dconf keys 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
(define-module (ruther home services dconf)
  #:use-module (guix gexp)
  #:use-module (guix modules)
  #:use-module (guix monads)
  #:use-module (guix store)

  #:use-module (gnu packages gnome)
  #:use-module (gnu services)
  #:use-module (gnu services configuration)
  #:use-module (gnu home services)

  #:use-module (srfi srfi-1)

  #:use-module (rde serializers ini)

  #:export (home-dconf-configuration
            home-dconf-service-type))

;; The state will be a scm file.
;; Create a file under the home folder that will

(define-configuration home-dconf-configuration
  (dconf (file-like dconf) "The dconf package to use for loading environment")
  (config
   (ini-config '())
   "The configuration of dconf to load. Stuff that's not
declared here is not touched. The stuff that was declared in previous
generation, and got removed, will also be removed from dconf.

The config is fed into dconf load. The ini sections should point to the
location in dconf settings, ie. org/gnome/desktop/interface, and
the values in there refer to values to set, ie. cursor-theme='my-pretty-cursors'."))

(define home-dconf-settings-file "state/dconf-settings.scm")

(define (update-dconf-settings-script dconf dconf-config)
  (program-file
   "update-dconf-settings"
   #~(begin
       (define (get-dconf-keys config)
         (apply
          append
          (apply
           append
           (map
            (lambda (section)
              (let ((section-name (symbol->string (car section))))
                (map
                 (lambda (section-fields)
                   (map
                    (lambda (section-field)
                      (string-append "/" section-name "/" (symbol->string (car section-field))))
                    section-fields))
                 (cdr section))))
            config))))

       (define (get-deleted-dconf-keys old-config new-config)
         (let ((old-keys (get-dconf-keys old-config))
               (new-keys (get-dconf-keys new-config)))
           (filter
            (lambda (key)
              (not (member key new-keys)))
            old-keys)))

       (use-modules (ice-9 popen))

       (let* ((dconf #$(file-append dconf "/bin/dconf"))

              (new-home (getenv "GUIX_NEW_HOME"))
              (old-home (getenv "GUIX_OLD_HOME"))
              (new-home-dconf-file (string-append new-home "/" #$home-dconf-settings-file))
              (old-home-dconf-file (when old-home
                                       (string-append old-home "/" #$home-dconf-settings-file)))
              (new-dconf-settings (with-input-from-file new-home-dconf-file read))
              (old-dconf-settings (if old-home-dconf-file
                                      (with-input-from-file old-home-dconf-file read)
                                      '()))

              (deleted-dconf-keys (get-deleted-dconf-keys old-dconf-settings new-dconf-settings))

              (dconf-ini #$(apply string-append
                                  (serialize-ini-config dconf-config
                                                        #:equal-string "="))))
         ;; Remove settings that are not managed anymore
         (display "Removing old dconf keys...")
         (newline)
         (for-each
          (lambda (deleted-key)
            (system* dconf "reset" deleted-key))
          deleted-dconf-keys)
         ;; Load the dconf settings
         (display "Loading dconf...")
         (newline)
         (let ((dconf-load-pipe (open-output-pipe (string-append dconf
                                                                 " load /"))))
           (display dconf-ini dconf-load-pipe)
           (close-pipe dconf-load-pipe))
         (display "Configured dconf.")
         (newline)))))

(define (dconf-activation config)
  #~(primitive-load #$(update-dconf-settings-script (home-dconf-configuration-dconf config)
                                                    (home-dconf-configuration-config config))))

(define (dconf-entry config)
  (with-monad %store-monad
    (return `((,home-dconf-settings-file
               ,(computed-file
                 "dconf-settings.scm"
                 #~(call-with-output-file #$output
                     (lambda (port)
                       (write '#$(home-dconf-configuration-config config) port)))))))))

(define (home-dconf-extensions original-config sections)
  (home-dconf-configuration
   (inherit original-config)
   (config
    (append
     (home-dconf-configuration-config original-config)
     sections))))

(define home-dconf-service-type
  (service-type
   (name 'home-dconf)
   (description "A service to populate dconf settings by given configuration.")
   (extend home-dconf-extensions)
   (compose concatenate)
   (extensions
    (list (service-extension home-service-type
                             dconf-entry)
          (service-extension home-activation-service-type
                             dconf-activation)))
   (default-value (home-dconf-configuration))))
Do not follow this link