system-configuration/modules/home-config/icecat.scm

icecat.scm

1
(define-module (home-config icecat)
2
  #:use-module (home)
3
  #:use-module (home icecat)
4
  #:export (icecat-home))
5
6
(define icecat-home
7
  (user-home icecat-home-type
8
    (icecat-configuration
9
      (profiles
10
        (list
11
          (icecat-profile-configuration
12
            (id "tylunble")
13
            (name "default")
14
            (extensions '())
15
            (data-directory "/data/tyreunom/.local/share/mozilla/profiles/default"))))
16
      (start-with-last-profile? #f))))
17