diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-14 11:17:09 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-14 11:17:09 +0100 |
commit | fb7cf8ff4d148a9ea216851a7b6d90e7e2927600 (patch) | |
tree | 8baf0f55182a0b36bfa314ad237a3feb2ade6daa | |
parent | 10164188340126891df4e5b44127be31c6f36e79 (diff) |
Home configuration: break out home-env-vars
-rw-r--r-- | home-configuration.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index d25720c..e225996 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -9,10 +9,13 @@ (define config-prefix "/home/marek/src/guix-config/") +(define home-env-vars + '(("EDITOR" . "emacs") + ("NVM_DIR" . "$HOME/src/nvm") + ("GUILE_AUTO_COMPILE" . "0"))) + (define bash-configuration - (home-bash-configuration (environment-variables '(("EDITOR" . "emacs") - ("NVM_DIR" . "$HOME/src/nvm") - ("GUILE_AUTO_COMPILE" . "0"))) + (home-bash-configuration (environment-variables home-env-vars) (aliases `(("grep" . "grep --color=auto") ("ll" . "ls -l") ("ls" . "ls -p --color=auto") |