# Set up the system, user profile, and related variables. # /etc/profile will be sourced by bash automatically # Set up the home environment profile. if [ -f ~/.profile ]; then source ~/.profile; fi # Honor per-interactive-shell startup file if [ -f ~/.bashrc ]; then source ~/.bashrc; fi export PS1="\\A \\e[1m \\W ${GUIX_ENVIRONMENT:+ (+)} \\e(B\\e[m" export LIBSEAT_BACKEND=logind export EDITOR="zile" export TERM="linux" export TERMINAL="foot" export GDK_DPI_SCALE="1.5" export GDK_SCALE="1.5" export QT_QPA_PLATFORM=wayland-egl export MOZ_ENABLE_WAYLAND="1" export XCURSOR_SIZE="32" export XDG_CURRENT_DESKTOP="wlroots" export XDG_SESSION_TYPE="wayland" export PF_INFO="ascii title os pkgs shell" export PF_ALIGN="7" export PF_COLOR="0" emacs --daemon if [ -e /home/mccd/.nix-profile/etc/profile.d/nix.sh ]; then . /home/mccd/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer if [[ "$(tty)" == "/dev/tty1" ]]; then exec dbus-run-session hikari; fi