diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-03-03 18:10:07 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-03-03 18:21:20 +0100 |
commit | 85ff140c661a6b77543cd2b3ff2e5f08927691c1 (patch) | |
tree | d29a97ff6319b0431a47100cae7d82b0294cd1e4 | |
parent | 2a7a1e8ae03e03deace396b61ed5d08add6c6c23 (diff) |
Add guix channels
-rw-r--r-- | guix/channels.scm | 8 | ||||
-rw-r--r-- | install.sh | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/guix/channels.scm b/guix/channels.scm new file mode 100644 index 0000000..f451402 --- /dev/null +++ b/guix/channels.scm @@ -0,0 +1,8 @@ +(cons* + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix")) + (channel + (name 'ekaitz) + (url "https://gitlab.com/ekaitz-zarraga/guix-packages")) + %default-channels) @@ -12,5 +12,8 @@ stow -Rt ${XDG_CONFIG_HOME:=$HOME/.config} nvim # kitty stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/kitty" kitty +# Guix channels +stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/guix" guix + # Plasma session environment variables #stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/plasma-workspace/env" plasma-env |