aboutsummaryrefslogtreecommitdiffstats
path: root/oni/home/services/environment.scm
blob: 062f3fec5e68a5a44fe744d9c2e06df703b97959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(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")
                     ("FILTER_BRANCH_SQUELCH_WARNING" . "1"))))