aboutsummaryrefslogtreecommitdiffstats
path: root/oni/home/services/environment.scm
blob: 4c52c072cc10816a6c7e8e3a1e27e044be7651d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(define-module (oni home services environment)
  #:use-module (gnu services)
  #:use-module (gnu home services)

  #:export (home-environment-service))

(define home-environment-service
  (simple-service 'home-environment-service
                   home-environment-variables-service-type
                   `(("LESS" . "FXRSi")
                     ("MY_GUIX_CONFIGURED" . "1")
                     ("DOTNET_CLI_TELEMETRY_OPTOUT" . "1")
                     ("EDITOR" . "emacsclient")
                     ("CALIBRE_USE_DARK_PALETTE" . "1")
                     ("GUIX_LOCPATH" . "$HOME/.guix-home/profile/lib/locale")
                     ("XDG_DATA_DIRS" . "${XDG_DATA_DIRS}${XDG_DATA_DIRS:+:}/usr/local/share:/usr/share"))))