Changeset dc74d32 in dotfiles
- Timestamp:
- Jul 3, 2022, 8:18:15 PM (2 years ago)
- Branches:
- master
- Children:
- 4526283
- Parents:
- c53d99e
- git-author:
- Mikhail Kirillov <w96k@…> (07/03/22 20:17:20)
- git-committer:
- Mikhail Kirillov <w96k@…> (07/03/22 20:18:15)
- Location:
- guix
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/.bash_profile
rc53d99e rdc74d32 1 GUIX_PROFILE="/home/w96k/.guix-profile" 2 . "$GUIX_PROFILE/etc/profile" 3 source "$HOME/.config/guix/current/etc/profile" 4 5 #export GUIX_PACKAGE_PATH=$HOME/projects/dotfiles/guix-channel/non-gnu/packages/ 6 export GUIX_PACKAGE_PATH=$HOME/.guix-packages/ 7 8 export PATH=$HOME/.config/guix/current/bin:$PATH:$HOME/.bin:~/.local/bin:/bin 1 export PATH=$PATH:$HOME/.bin:~/.local/bin:/bin:$HOME/.nix-profile/bin 9 2 #:$HOME/.nix-profile/bin 10 3 … … 12 5 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.guix-profile/lib/ 13 6 14 export XENVIRONMENT= "${HOME}/.Xresources"7 export XENVIRONMENT=$HOME/.Xresources 15 8 16 9 export MOZ_X11_EGL=1 … … 20 13 alias firefox='x11docker -c -I --share $HOME/Downloads -- --tmpfs /dev/shm -- jess/firefox' 21 14 15 export LIBVA_DRIVER_NAME=i965 16 export MOZ_X11_EGL=1 17 22 18 GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles 19 23 20 for i in $GUIX_EXTRA_PROFILES/*; do 24 21 profile=$i/$(basename "$i") … … 30 27 done 31 28 29 export PHPENV_ROOT="/home/w96k/.phpenv" 30 if [ -d "${PHPENV_ROOT}" ]; then 31 export PATH="${PHPENV_ROOT}/bin:${PATH}" 32 eval "$(phpenv init -)" 33 fi 34 32 35 # Honor per-interactive-shell startup file 33 36 # if [ -f ~/.bashrc ]; then . ~/.bashrc; fi -
guix/.bashrc
rc53d99e rdc74d32 3 3 # Source the system-wide file. 4 4 source /etc/bashrc 5 6 5 7 6 # Adjust the prompt depending on whether we're in 'guix environment'. -
guix/.guix-packages/docker.scm
rc53d99e rdc74d32 1 (define-module (docker)2 #:use-module (guix packages)3 #:use-module (guix utils)4 #:use-module (gnu packages docker)5 #:use-module (gnu packages python))1 ;; (define-module (docker) 2 ;; #:use-module (guix packages) 3 ;; #:use-module (guix utils) 4 ;; #:use-module (gnu packages docker) 5 ;; #:use-module (gnu packages python)) 6 6 7 (define-public my-docker-compose8 (package9 (inherit docker-compose)10 (name "docker-compose")11 (version "1.29.2")12 (arguments13 '(#:tests? #f14 #:phases15 (modify-phases %standard-phases16 (delete 'sanity-check))))))7 ;; (define-public my-docker-compose 8 ;; (package 9 ;; (inherit docker-compose) 10 ;; (name "docker-compose") 11 ;; (version "1.29.2") 12 ;; (arguments 13 ;; '(#:tests? #f 14 ;; #:phases 15 ;; (modify-phases %standard-phases 16 ;; (delete 'sanity-check)))))) -
guix/config.scm
rc53d99e rdc74d32 118 118 '("grp:shifts_toggle" 119 119 "caps:ctrl_modifier"))) 120 (kernel linux-libre-5.1 5)120 (kernel linux-libre-5.18) 121 121 (kernel-loadable-modules '()) 122 122 (kernel-arguments … … 213 213 (tor-configuration 214 214 (config-file (plain-file "tor-config" 215 "HTTPTunnelPort 127.0.0.1:9250")))) 215 "HTTPTunnelPort 127.0.0.1:9250"))) 216 ) 216 217 217 218 ;;Wacom tablet support -
guix/etc/guix/machines.scm
rc53d99e rdc74d32 2 2 (name "Yunohost") 3 3 (systems (list "x86_64-linux" "i686-linux")) 4 (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHeon4e9iK9HWicDp2lwoBmbTXQPB4dofNaBubGflhJN ")4 (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHeon4e9iK9HWicDp2lwoBmbTXQPB4dofNaBubGflhJN root@yunohost") 5 5 (user "root") 6 6 (private-key
Note:
See TracChangeset
for help on using the changeset viewer.