Changeset dc74d32 in dotfiles


Ignore:
Timestamp:
Jul 3, 2022, 8:18:15 PM (2 years ago)
Author:
Mikhail Kirillov <w96k@…>
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)
Message:

Update guix config

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
     1export PATH=$PATH:$HOME/.bin:~/.local/bin:/bin:$HOME/.nix-profile/bin
    92#:$HOME/.nix-profile/bin
    103
     
    125export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.guix-profile/lib/
    136
    14 export XENVIRONMENT="${HOME}/.Xresources"
     7export XENVIRONMENT=$HOME/.Xresources
    158
    169export MOZ_X11_EGL=1
     
    2013alias firefox='x11docker -c -I --share $HOME/Downloads -- --tmpfs /dev/shm -- jess/firefox'
    2114
     15export LIBVA_DRIVER_NAME=i965
     16export MOZ_X11_EGL=1
     17
    2218GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles
     19
    2320for i in $GUIX_EXTRA_PROFILES/*; do
    2421    profile=$i/$(basename "$i")
     
    3027done
    3128
     29export PHPENV_ROOT="/home/w96k/.phpenv"
     30if [ -d "${PHPENV_ROOT}" ]; then
     31  export PATH="${PHPENV_ROOT}/bin:${PATH}"
     32  eval "$(phpenv init -)"
     33fi
     34
    3235# Honor per-interactive-shell startup file
    3336# if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
  • guix/.bashrc

    rc53d99e rdc74d32  
    33# Source the system-wide file.
    44source /etc/bashrc   
    5 
    65
    76# 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))
    66
    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))))))
     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  
    118118   '("grp:shifts_toggle"
    119119     "caps:ctrl_modifier")))
    120  (kernel linux-libre-5.15)
     120 (kernel linux-libre-5.18)
    121121 (kernel-loadable-modules '())
    122122 (kernel-arguments
     
    213213            (tor-configuration
    214214             (config-file (plain-file "tor-config"
    215                                       "HTTPTunnelPort 127.0.0.1:9250"))))
     215                                      "HTTPTunnelPort 127.0.0.1:9250")))
     216            )
    216217
    217218   ;;Wacom tablet support
  • guix/etc/guix/machines.scm

    rc53d99e rdc74d32  
    22       (name "Yunohost")
    33       (systems (list "x86_64-linux" "i686-linux"))
    4        (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHeon4e9iK9HWicDp2lwoBmbTXQPB4dofNaBubGflhJN")
     4       (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHeon4e9iK9HWicDp2lwoBmbTXQPB4dofNaBubGflhJN root@yunohost")
    55       (user "root")
    66       (private-key
Note: See TracChangeset for help on using the changeset viewer.