aboutsummaryrefslogtreecommitdiff
path: root/kbg/services
diff options
context:
space:
mode:
authorKenny Ballou <kb@devnulllabs.io>2022-06-15 11:57:02 -0600
committerKenny Ballou <kb@devnulllabs.io>2022-06-15 11:57:02 -0600
commit2bc87b869cafe977cd596934f76875a33fca8e90 (patch)
treec532438b23cdb510f271f3d4af08d905f473995d /kbg/services
parent25889c9e9900ca785d220a125585672542c846f5 (diff)
downloaddotfiles-2bc87b869cafe977cd596934f76875a33fca8e90.tar.gz
dotfiles-2bc87b869cafe977cd596934f76875a33fca8e90.tar.xz
config: vars: add GUILE_DRMAA_LIBRARY
This informs `guix workflow` where to find the DRMAA library for slurm when using `drmaa-engine` for `guix workflow` calls. Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
Diffstat (limited to 'kbg/services')
-rw-r--r--kbg/services/config/vars.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/kbg/services/config/vars.scm b/kbg/services/config/vars.scm
index 581092be..fec0fd67 100644
--- a/kbg/services/config/vars.scm
+++ b/kbg/services/config/vars.scm
@@ -3,14 +3,16 @@
#:use-module (gnu)
#:use-module (guix)
#:use-module (gnu home services)
+ #:use-module (gnu packages parallel)
#:export (home-vars-service))
(define home-vars-service
(list (simple-service 'home-vars
home-environment-variables-service-type
- '(("_JAVA_OPTIONS" . "\"-Dawt.useSystemAAFontSettings=on -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel\"")
+ `(("_JAVA_OPTIONS" . "\"-Dawt.useSystemAAFontSettings=on -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel\"")
("ASPELL_CONF" . "\"per-conf ${XDG_CONFIG_HOME}/aspell/aspell.conf; personal ${XDG_CONFIG_HOME}/aspell/en.pws; repl ${XDG_CONFIG_HOME}/aspell/en.prepl\"")
("EDITOR" . "emacsclient")
+ ("GUILE_DRMAA_LIBRARY" . ,(file-append slurm-drmaa "/lib/libdrmaa.so"))
("GUIX_EXTENSIONS_PATH" . "${GUIX_PROFILE}/share/guix/extensions")
("GUIX_PROFILE" . "${HOME}/.guix-home/profile")
("MPD_HOST" . "/run/user/1000/mpd/socket")