aboutsummaryrefslogtreecommitdiff
path: root/tw/home.scm
diff options
context:
space:
mode:
authorTimo Wilken2024-08-25 11:10:02 +0200
committerTimo Wilken2024-08-25 11:10:02 +0200
commitf1328a5b750ba3ad55f9c3e29cd8ea926bf4523b (patch)
tree15a143fcdb9b2df79ee68c23251620a14fc64500 /tw/home.scm
parentef74672906a8b5918e4c4b0984af77f75cd35267 (diff)
Remove ALICE-specific configuration
Diffstat (limited to 'tw/home.scm')
-rw-r--r--tw/home.scm18
1 files changed, 1 insertions, 17 deletions
diff --git a/tw/home.scm b/tw/home.scm
index f06e762f..cbab31c5 100644
--- a/tw/home.scm
+++ b/tw/home.scm
@@ -92,23 +92,7 @@
(define (environment-variables config)
"Configure my shell environment."
- `( ;; Work at ALICE: Nomad, Consul, Vault.
- ;; Tokens are not defined here as they are stored in pass(1).
- ;; Shell aliases to use tokens are defined in zshrc.
- ("NOMAD_ADDR" . "https://alinomad.cern.ch:443")
- ("NOMAD_CACERT" . "${XDG_CONFIG_HOME}/cern-ca-bundle.crt")
- ("NOMAD_CLIENT_CERT" . "${XDG_CONFIG_HOME}/grid-personal-cert.pem")
- ("NOMAD_CLIENT_KEY" . "${XDG_CONFIG_HOME}/grid-personal-key.pem")
- ("CONSUL_HTTP_ADDR" . "https://aliconsul.cern.ch:443")
- ("CONSUL_CACERT" . "${XDG_CONFIG_HOME}/cern-ca-bundle.crt")
- ("CONSUL_CLIENT_CERT" . "${XDG_CONFIG_HOME}/grid-personal-cert.pem")
- ("CONSUL_CLIENT_KEY" . "${XDG_CONFIG_HOME}/grid-personal-key.pem")
- ("VAULT_ADDR" . "https://alivault.cern.ch:443")
- ("VAULT_CACERT" . "${XDG_CONFIG_HOME}/cern-ca-bundle.crt")
- ("VAULT_CLIENT_CERT" . "${XDG_CONFIG_HOME}/grid-personal-cert.pem")
- ("VAULT_CLIENT_KEY" . "${XDG_CONFIG_HOME}/grid-personal-key.pem")
-
- ;; Common environment everywhere.
+ `(;; Common environment everywhere.
;; Prepend my own binaries to $PATH. These should probably all
;; be managed through `home-files-service-type'.
("PATH" . "$HOME/.local/bin${PATH:+:}$PATH")