summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Wilken2023-06-16 19:17:20 +0200
committerTimo Wilken2023-06-16 19:17:20 +0200
commit692c4e728fdbd692392b3fb2696b0bfdd37da28c (patch)
tree9a53bc248475e833880a368e808df1f15f3cf4ef
parentebaf88b8538cf6041dbad64828ccdba6577f824f (diff)
Use upstream channel by default, not local checkout
-rw-r--r--tw/home.scm20
1 files changed, 2 insertions, 18 deletions
diff --git a/tw/home.scm b/tw/home.scm
index aa064aef..4e3fe6f8 100644
--- a/tw/home.scm
+++ b/tw/home.scm
@@ -220,11 +220,7 @@ auto-expand-secmem
("VAULT_CLIENT_KEY" . "${XDG_CONFIG_HOME}/grid-personal-key.pem")))
(simple-service 'common-environment home-environment-variables-service-type
- `(;; Path to my own package definitions. If invoking `guix home'
- ;; afresh, this needs to be set manually to find these packages.
- ("GUIX_PACKAGE_PATH" . "$HOME/src/guix-decls")
-
- ;; Prepend my own binaries to $PATH. These should probably all
+ `(;; Prepend my own binaries to $PATH. These should probably all
;; be managed through `home-files-service-type'.
("PATH" . "$HOME/.local/bin${PATH:+:}$PATH")
@@ -247,19 +243,7 @@ auto-expand-secmem
("NO_AT_BRIDGE" . "1")
;; Auto-compilation is annoying and creates a bunch of files that are never cleaned up.
- ("GUILE_AUTO_COMPILE" . "0")
-
- ;; For some reason, Guix doesn't seem to add these paths automatically.
- ("GUILE_LOAD_PATH" .
- ,(string-append
- "$GUIX_PACKAGE_PATH:"
- "$XDG_CONFIG_HOME/guix/current/share/guile/site/3.0"
- "${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH"))
- ("GUILE_LOAD_COMPILED_PATH" .
- ,(string-append
- "$XDG_CONFIG_HOME/guix/current/lib/guile/3.0/site-ccache:"
- "$XDG_CONFIG_HOME/guix/current/share/guile/site/3.0"
- "${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH"))))
+ ("GUILE_AUTO_COMPILE" . "0")))
;; XDG basedir spec compliance for various programs
;; See: https://wiki.archlinux.org/index.php/XDG_Base_Directory for a list of programs.