aboutsummaryrefslogtreecommitdiffstats
path: root/oni/home/services/environment.scm
diff options
context:
space:
mode:
Diffstat (limited to 'oni/home/services/environment.scm')
-rw-r--r--oni/home/services/environment.scm16
1 files changed, 16 insertions, 0 deletions
diff --git a/oni/home/services/environment.scm b/oni/home/services/environment.scm
new file mode 100644
index 0000000..4c52c07
--- /dev/null
+++ b/oni/home/services/environment.scm
@@ -0,0 +1,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"))))