jeanp413 / open-remote-ssh

VSCode Remote Development: Open any folder on a remote machine using SSH.
MIT License
269 stars 37 forks source link

what is the default 'bash' shell, how is it started? #159

Closed qknight closed 2 months ago

qknight commented 2 months ago

what i want

i want to use vscodium + open-remote-ssh to develop rust on a remote machine which is running nixos-wsl.

i use:

what i want to work:

and also:

finally i want to use code path following (which does not work currently, as rust-analyzer does not work either.

what works

i can edit files and using a seperate terminal with a ssh session on the destination i can compile and run the code.

what does not work

i can't use:

the issue

form my windows host i can run:

$ ssh nixos
Last login: Tue Jun 25 12:36:55 2024 from 172.28.160.1
interactive
warning: Git tree '/home/nixos/klick' is dirty

[nixos@nixos:~/klick]$ cargo --version
cargo 1.79.0 (ffa9cf99a 2024-06-03)

but i can also run:

$ ssh nixos cargo --version
none interactive
warning: Git tree '/home/nixos/klick' is dirty
cargo 1.79.0 (ffa9cf99a 2024-06-03)

but the shell coming with open-remote-ssh seems to start some other shell than the default from /etc/passwd and i don't even know how it does it and from where.

does it start the shell somehow like: env -i bash because that does also not use the ssh remote shell.

my shell setup


  users.users.nixos.shell = /home/nixos/klick/bash-wrapper.sh;

/home/nixos/klick/bash-wrapper.sh

#!/run/current-system/sw/bin/bash
# NOTE: each change requires a 'nixos-rebuild switch' run to become active

cd /home/nixos/klick

is_interactive() {
    # A shell is considered interactive if it has a terminal associated with standard input
    if [ -t 0 ]; then
        return 0
    else
        return 1
    fi
}

# Main execution starts here

# Check if the shell is interactive
if is_interactive; then
    # If the shell is interactive, call bash in interactive mode
    #exec /run/current-system/sw/bin/bash
    echo "interactive"
    exec /run/current-system/sw/bin/nix develop --command /run/current-system/sw/bin/bash
else
    # If the shell is non-interactive, pass all arguments to bash
    #exec /run/current-system/sw/bin/bash "$@"
    echo "none interactive"
    exec /run/current-system/sw/bin/nix develop --command /run/current-system/sw/bin/bash -c "$@"
fi

the /etc/passwd does look like this now:

[nixos@nixos:~/klick]$ cat /etc/passwd
root:x:0:0:System administrator:/root:/run/current-system/sw/bin/bash
...
nixos:x:1000:100::/home/nixos:/nix/store/4gk6fjv5rpms3rznq19v6cxp5fa6w0xv-bash-wrapper.sh
nixbld1:x:30001:30000:Nix build user 1:/var/empty:/run/current-system/sw/bin/nologin
jeanp413 commented 2 months ago

@qknight vscode is the one who does the shell resolution internally here, by default it will use the shell from $SHELL but if that's unset it will use node's userInfo().shell which will read /etc/passwd source code

qknight commented 2 months ago

@jeanp413 cool, THANKS! I checked my system and got it working now, here are some details:

in my current working shell (after relogin) i see:

declare -x SHELL="/nix/store/4gk6fjv5rpms3rznq19v6cxp5fa6w0xv-bash-wrapper.sh"
declare -x shell="/nix/store/agkxax48k35wdmkhmmija2i2sxg8i7ny-bash-5.2p26/bin/bash"

it seems to favour the SHELL (all in caps) but the default shell configuration wasn't updated for running processes just yet because:

i early used this code section in configuration.nix:

users.users.nixos.shell = /home/nixos/klick/bash-wrapper.sh;

turns out after a nixos-rebuild switch, that already running programs would still point something like /nix/store/agkxax48k35wdmkhmmija2i2sxg8i7ny-bash-5.2p26/bin/bash instead of /home/nixos/klick/bash-wrapper.sh;

SO in the nixos-wsl instance:

ssh nixos
ps aux | grep codium
nixos     162533  0.0  0.0   6720  3316 ?        S    16:57   0:00 sh /home/nixos/.vscodium-server/bin/0d01a72525276e5e3771fe5851b9c83de0de1e2b/bin/codium-server --start-server --host=127.0.0.1 --port=0 --connection-token-file /home/nixos/.vscodium-server/.0d01a72525276e5e3771fe5851b9c83de0de1e2b.token --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms

i did restart it using the auto-restart feature and a kill:

kill -9 162533  

and then restarting vscodium the rust-analyzer started working and i can ctrl+click crate functions and get to the create implementation!

env -i bash

bash-5.2$ export
declare -x EDITOR="nano"
declare -x GTK_A11Y="none"
declare -x GTK_PATH="/.nix-profile/lib/gtk-2.0:/.nix-profile/lib/gtk-3.0:/.nix-profile/lib/gtk-4.0:/nix/profile/lib/gtk-2.0:/nix/profile/lib/gtk-3.0:/nix/profile/lib/gtk-4.0:/.local/state/nix/profile/lib/gtk-2.0:/.local/state/nix/profile/lib/gtk-3.0:/.local/state/nix/profile/lib/gtk-4.0:/etc/profiles/per-user//lib/gtk-2.0:/etc/profiles/per-user//lib/gtk-3.0:/etc/profiles/per-user//lib/gtk-4.0:/nix/var/nix/profiles/default/lib/gtk-2.0:/nix/var/nix/profiles/default/lib/gtk-3.0:/nix/var/nix/profiles/default/lib/gtk-4.0:/run/current-system/sw/lib/gtk-2.0:/run/current-system/sw/lib/gtk-3.0:/run/current-system/sw/lib/gtk-4.0"
declare -x INFOPATH="/.nix-profile/info:/.nix-profile/share/info:/nix/profile/info:/nix/profile/share/info:/.local/state/nix/profile/info:/.local/state/nix/profile/share/info:/etc/profiles/per-user//info:/etc/profiles/per-user//share/info:/nix/var/nix/profiles/default/info:/nix/var/nix/profiles/default/share/info:/run/current-system/sw/info:/run/current-system/sw/share/info"
declare -x LANG="en_US.UTF-8"
declare -x LESSKEYIN_SYSTEM="/nix/store/l9iw0q3jgamahand37nxqncgl4ghklps-lessconfig"
declare -x LESSOPEN="|/nix/store/2hh93jad9hlhgy2sqj4rfzsjj7c5pdf5-lesspipe-2.10/bin/lesspipe.sh %s"
declare -x LIBEXEC_PATH="/.nix-profile/lib/libexec:/nix/profile/lib/libexec:/.local/state/nix/profile/lib/libexec:/etc/profiles/per-user//lib/libexec:/nix/var/nix/profiles/default/lib/libexec:/run/current-system/sw/lib/libexec"
declare -x LOCALE_ARCHIVE="/run/current-system/sw/lib/locale/locale-archive"
declare -x LS_COLORS=""
declare -x NIXPKGS_CONFIG="/etc/nix/nixpkgs-config.nix"
declare -x NIX_PATH="nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root/channels"
declare -x NIX_PROFILES="/run/current-system/sw /nix/var/nix/profiles/default /etc/profiles/per-user/ /.local/state/nix/profile /nix/profile /.nix-profile"
declare -x NIX_USER_PROFILE_DIR="/nix/var/nix/profiles/per-user/"
declare -x NO_AT_BRIDGE="1"
declare -x OLDPWD="/home/nixos/klick"
declare -x PAGER="less"
declare -x PATH="/run/wrappers/bin:/no-such-path:/.nix-profile/bin:/nix/profile/bin:/.local/state/nix/profile/bin:/etc/profiles/per-user//bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin"
declare -x PWD="/home/nixos/klick"
declare -x QTWEBKIT_PLUGIN_PATH="/.nix-profile/lib/mozilla/plugins/:/nix/profile/lib/mozilla/plugins/:/.local/state/nix/profile/lib/mozilla/plugins/:/etc/profiles/per-user//lib/mozilla/plugins/:/nix/var/nix/profiles/default/lib/mozilla/plugins/:/run/current-system/sw/lib/mozilla/plugins/"
declare -x SHLVL="1"
declare -x SSH_ASKPASS=""
declare -x TERM="dumb"
declare -x TERMINFO_DIRS="/.nix-profile/share/terminfo:/nix/profile/share/terminfo:/.local/state/nix/profile/share/terminfo:/etc/profiles/per-user//share/terminfo:/nix/var/nix/profiles/default/share/terminfo:/run/current-system/sw/share/terminfo"
declare -x TZDIR="/etc/zoneinfo"
declare -x WSLPATH=""
declare -x XCURSOR_PATH="/.icons:/.local/share/icons:/.nix-profile/share/icons:/.nix-profile/share/pixmaps:/nix/profile/share/icons:/nix/profile/share/pixmaps:/.local/state/nix/profile/share/icons:/.local/state/nix/profile/share/pixmaps:/etc/profiles/per-user//share/icons:/etc/profiles/per-user//share/pixmaps:/nix/var/nix/profiles/default/share/icons:/nix/var/nix/profiles/default/share/pixmaps:/run/current-system/sw/share/icons:/run/current-system/sw/share/pixmaps"
declare -x XDG_CONFIG_DIRS="/etc/xdg:/.nix-profile/etc/xdg:/nix/profile/etc/xdg:/.local/state/nix/profile/etc/xdg:/etc/profiles/per-user//etc/xdg:/nix/var/nix/profiles/default/etc/xdg:/run/current-system/sw/etc/xdg"
declare -x XDG_DATA_DIRS="/nix/store/raivb3kdipvmgkyh9aqw7wyrw4y6qfwn-desktops/share:/.nix-profile/share:/nix/profile/share:/.local/state/nix/profile/share:/etc/profiles/per-user//share:/nix/var/nix/profiles/default/share:/run/current-system/sw/share"
declare -x __ETC_PROFILE_DONE="1"
declare -x __NIXOS_SET_ENVIRONMENT_DONE="1"
declare -x export

login shell

declare -x AR="ar"
declare -x AR_FOR_TARGET="ar"
declare -x AS="as"
declare -x AS_FOR_TARGET="as"
declare -x CC="gcc"
declare -x CC_FOR_TARGET="gcc"
declare -x CONFIG_SHELL="/nix/store/agkxax48k35wdmkhmmija2i2sxg8i7ny-bash-5.2p26/bin/bash"
declare -x CXX="g++"
declare -x CXX_FOR_TARGET="g++"
declare -x DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
declare -x EDITOR="nano"
declare -x GDK_PIXBUF_MODULE_FILE="/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"
declare -x GETTEXTDATADIRS="/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/share/gettext:/nix/store/nm9608b5y801fq2p73nl7k80z8kcbmh2-glib-2.80.2/share/gettext"
declare -x GTK_A11Y="none"
declare -x GTK_PATH="/home/nixos/.nix-profile/lib/gtk-2.0:/home/nixos/.nix-profile/lib/gtk-3.0:/home/nixos/.nix-profile/lib/gtk-4.0:/nix/profile/lib/gtk-2.0:/nix/profile/lib/gtk-3.0:/nix/profile/lib/gtk-4.0:/home/nixos/.local/state/nix/profile/lib/gtk-2.0:/home/nixos/.local/state/nix/profile/lib/gtk-3.0:/home/nixos/.local/state/nix/profile/lib/gtk-4.0:/etc/profiles/per-user/nixos/lib/gtk-2.0:/etc/profiles/per-user/nixos/lib/gtk-3.0:/etc/profiles/per-user/nixos/lib/gtk-4.0:/nix/var/nix/profiles/default/lib/gtk-2.0:/nix/var/nix/profiles/default/lib/gtk-3.0:/nix/var/nix/profiles/default/lib/gtk-4.0:/run/current-system/sw/lib/gtk-2.0:/run/current-system/sw/lib/gtk-3.0:/run/current-system/sw/lib/gtk-4.0"
declare -x HOME="/home/nixos"
declare -x HOST_PATH="/nix/store/mpm3i0sbqc9svfch6a17179fs64dz2kv-gcc-wrapper-13.3.0/bin:/nix/store/l46fjkzva0bhvy9p2r7p4vi68kr7a1db-binutils-wrapper-2.41/bin:/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0/bin:/nix/store/lzra8hqqfzi572i02qmvmn3q7i3vh95n-cargo-zigbuild-0.18.4/bin:/nix/store/adl2h1xlljlr8bgxp2mxl428q3vzf5h1-trunk-0.20.2/bin:/nix/store/jsbha1gg6lzzj7icrg3h0npgm8vwf80c-git-2.45.1/bin:/nix/store/l2mnzn1lplnbkc7rsj3vvcd60jdn8qfi-tig-2.5.10/bin:/nix/store/2hfzaqv42iwrpk3ya24cnjsklz6f68lw-pkg-config-wrapper-0.29.2/bin:/nix/store/i1873qgj1pg60af9vc0gpjw79fk5mpjq-just-1.29.1/bin:/nix/store/r5i8x7idnrk62q7d2ns8nazqnj02sdjw-tailwindcss-3.4.3/bin:/nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/bin:/nix/store/lx6fv821qp53pzkjqpyvknawl4q1djyl-pandoc-cli-3.1.11.1/bin:/nix/store/z7wk771rz3bi3450b2ay4nd5y5xim0ms-texlive-2023-env/bin:/nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/bin:/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/bin:/nix/store/p1y3zy8435yf7n95iyhcyn8vz8by9hqa-glib-2.80.2-bin/bin:/nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/bin:/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/bin:/nix/store/1x2kc67whddywrz9vlbz9vdiziqn9d15-libjpeg-turbo-3.0.3-bin/bin:/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/bin:/nix/store/qqhrymypl970jc6npvi9a6sikhr84mdf-xz-5.4.6-bin/bin:/nix/store/gsrsyrcqscmq7yq54gyc7xsr3mfwvj1k-zstd-1.5.6-bin/bin:/nix/store/sdv9z5jh502gwyh9m959ya6a2pc8skrk-zstd-1.5.6/bin:/nix/store/7xsn1r7qhi2gqcnhx54zpskjzrx4jmma-libtiff-4.6.0-bin/bin:/nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/bin:/nix/store/3jbl3zgj68ff6cngbzbkk82y1ckd5552-gdk-pixbuf-2.42.12/bin:/nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/bin:/nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/bin:/nix/store/cyc3v8qfkhn4r38a8s5d7f2c33q624mz-bzip2-1.0.8-bin/bin:/nix/store/gc3kxhjip6zhm6h5g4hhdc9lqjl5kiwb-brotli-1.1.0/bin:/nix/store/9dny6j912x8bdvd53q4lgcz6m5xncvv9-fontconfig-2.15.0-bin/bin:/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/bin:/nix/store/3cmxly54pvpv20m6cfpj96j18w8gbp02-openssl-3.0.13-bin/bin:/nix/store/i7qhgc0bs725qw3wdanznfkdna4z2ns2-coreutils-9.5/bin:/nix/store/rr1yixvn0z63mgq9s04ig9j9qlz23s2g-findutils-4.9.0/bin:/nix/store/j4gkc44c1pwl5ccgxm83s4r746bsdcw9-diffutils-3.10/bin:/nix/store/ks6c62g0m3gqrs5i7m0cv6d6aqhdvirn-gnused-4.9/bin:/nix/store/md9apn3290h7kv0x198ihaaa3k6icg4b-gnugrep-3.11/bin:/nix/store/hkx0wcm23i9ihqlysri8n41kl232kawb-gawk-5.2.2/bin:/nix/store/95ljdxg4drk1iq8jkjfq2c0z5vbwv8vm-gnutar-1.35/bin:/nix/store/nc9lq1lra01932rfyclq3gsh82cxbmii-gzip-1.13/bin:/nix/store/cyc3v8qfkhn4r38a8s5d7f2c33q624mz-bzip2-1.0.8-bin/bin:/nix/store/18z454gyz0wpb641rw6gpqk0vi4wbxy6-gnumake-4.4.1/bin:/nix/store/agkxax48k35wdmkhmmija2i2sxg8i7ny-bash-5.2p26/bin:/nix/store/r05c0lpbnjc8dg3rrr3ck7s07pjy86j3-patch-2.7.6/bin:/nix/store/qqhrymypl970jc6npvi9a6sikhr84mdf-xz-5.4.6-bin/bin:/nix/store/qcqmiq1mb3pkk2bxbj6d6gb2fk9knk8l-file-5.45/bin"
declare -x INFOPATH="/home/nixos/.nix-profile/info:/home/nixos/.nix-profile/share/info:/nix/profile/info:/nix/profile/share/info:/home/nixos/.local/state/nix/profile/info:/home/nixos/.local/state/nix/profile/share/info:/etc/profiles/per-user/nixos/info:/etc/profiles/per-user/nixos/share/info:/nix/var/nix/profiles/default/info:/nix/var/nix/profiles/default/share/info:/run/current-system/sw/info:/run/current-system/sw/share/info"
declare -x IN_NIX_SHELL="impure"
declare -x LANG="en_US.UTF-8"
declare -x LD="ld"
declare -x LD_FOR_TARGET="ld"
declare -x LESSKEYIN_SYSTEM="/nix/store/l9iw0q3jgamahand37nxqncgl4ghklps-lessconfig"
declare -x LESSOPEN="|/nix/store/2hh93jad9hlhgy2sqj4rfzsjj7c5pdf5-lesspipe-2.10/bin/lesspipe.sh %s"
declare -x LIBEXEC_PATH="/home/nixos/.nix-profile/lib/libexec:/nix/profile/lib/libexec:/home/nixos/.local/state/nix/profile/lib/libexec:/etc/profiles/per-user/nixos/lib/libexec:/nix/var/nix/profiles/default/lib/libexec:/run/current-system/sw/lib/libexec"
declare -x LOCALE_ARCHIVE="/run/current-system/sw/lib/locale/locale-archive"
declare -x LOGNAME="nixos"
declare -x LS_COLORS="rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.swp=00;90:*.tmp=00;90:*.dpkg-dist=00;90:*.dpkg-old=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:"
declare -x NIXPKGS_CONFIG="/etc/nix/nixpkgs-config.nix"
declare -x NIX_BINTOOLS="/nix/store/l46fjkzva0bhvy9p2r7p4vi68kr7a1db-binutils-wrapper-2.41"
declare -x NIX_BINTOOLS_FOR_TARGET="/nix/store/l46fjkzva0bhvy9p2r7p4vi68kr7a1db-binutils-wrapper-2.41"
declare -x NIX_BINTOOLS_WRAPPER_TARGET_HOST_x86_64_unknown_linux_gnu="1"
declare -x NIX_BINTOOLS_WRAPPER_TARGET_TARGET_x86_64_unknown_linux_gnu="1"
declare -x NIX_BUILD_CORES="16"
declare -x NIX_BUILD_TOP="/tmp/nix-shell.9quq4r"
declare -x NIX_CC="/nix/store/mpm3i0sbqc9svfch6a17179fs64dz2kv-gcc-wrapper-13.3.0"
declare -x NIX_CC_FOR_TARGET="/nix/store/mpm3i0sbqc9svfch6a17179fs64dz2kv-gcc-wrapper-13.3.0"
declare -x NIX_CC_WRAPPER_TARGET_HOST_x86_64_unknown_linux_gnu="1"
declare -x NIX_CC_WRAPPER_TARGET_TARGET_x86_64_unknown_linux_gnu="1"
declare -x NIX_CFLAGS_COMPILE=" -frandom-seed=mx3rg6h0f3 -isystem /nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/include -isystem /nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/include -isystem /nix/store/i6d6yqh7z6zqcdlizpp2qsq429a5pi1c-librsvg-2.58.1-dev/include -isystem /nix/store/i6d6yqh7z6zqcdlizpp2qsq429a5pi1c-librsvg-2.58.1-dev/include -isystem /nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/include -isystem /nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/include -isystem /nix/store/dq03m14rqjvbz6pw42g555df4khh4bvr-zlib-1.3.1-dev/include -isystem /nix/store/dq03m14rqjvbz6pw42g555df4khh4bvr-zlib-1.3.1-dev/include -isystem /nix/store/sgkd52qmdvcnqgddnv9js65yyn8rfjhz-libffi-3.4.6-dev/include -isystem /nix/store/sgkd52qmdvcnqgddnv9js65yyn8rfjhz-libffi-3.4.6-dev/include -isystem /nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/include -isystem /nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/include -isystem /nix/store/k0nyidqrj3flins3fy2l0gbx36b0b5dn-glibc-iconv-2.39/include -isystem /nix/store/k0nyidqrj3flins3fy2l0gbx36b0b5dn-glibc-iconv-2.39/include -isystem /nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/include -isystem /nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/include -isystem /nix/store/jmw6p3s282n6w6c7703iilghg7fsrkkz-libtiff-4.6.0-dev/include -isystem /nix/store/jmw6p3s282n6w6c7703iilghg7fsrkkz-libtiff-4.6.0-dev/include -isystem /nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/include -isystem /nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/include -isystem /nix/store/12x20nwp0ff0xh1licyk7s5x4yvrar8i-libjpeg-turbo-3.0.3-dev/include -isystem /nix/store/12x20nwp0ff0xh1licyk7s5x4yvrar8i-libjpeg-turbo-3.0.3-dev/include -isystem /nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/include -isystem /nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/include -isystem /nix/store/q44z8rysv49g14gn28wcc2z68rqjdxcq-xz-5.4.6-dev/include -isystem /nix/store/q44z8rysv49g14gn28wcc2z68rqjdxcq-xz-5.4.6-dev/include -isystem /nix/store/4i4z8z68605bjs91mkshqhmnpn8bxwmb-zstd-1.5.6-dev/include -isystem /nix/store/4i4z8z68605bjs91mkshqhmnpn8bxwmb-zstd-1.5.6-dev/include -isystem /nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/include -isystem /nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/include -isystem /nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/include -isystem /nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/include -isystem /nix/store/hfclhmwn3vaydbnlmi5jlxnyqa6kickq-fontconfig-2.15.0-dev/include -isystem /nix/store/hfclhmwn3vaydbnlmi5jlxnyqa6kickq-fontconfig-2.15.0-dev/include -isystem /nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/include -isystem /nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/include -isystem /nix/store/88326pg3k1s5nws94zava87x99ywnp39-bzip2-1.0.8-dev/include -isystem /nix/store/88326pg3k1s5nws94zava87x99ywnp39-bzip2-1.0.8-dev/include -isystem /nix/store/swpadsv3kffpixpgz3d7x2s20b1l3j38-brotli-1.1.0-dev/include -isystem /nix/store/swpadsv3kffpixpgz3d7x2s20b1l3j38-brotli-1.1.0-dev/include -isystem /nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/include -isystem /nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/include -isystem /nix/store/12zpl39jcq7i8qq22zscfnhpvazx7707-libXext-1.3.6-dev/include -isystem /nix/store/12zpl39jcq7i8qq22zscfnhpvazx7707-libXext-1.3.6-dev/include -isystem /nix/store/liak2ih1rjid0yz7my7l5azmxpmjlvvq-xorgproto-2024.1/include -isystem /nix/store/liak2ih1rjid0yz7my7l5azmxpmjlvvq-xorgproto-2024.1/include -isystem /nix/store/kcx4247f638jh1jmmfpipc8288323781-libXau-1.0.11-dev/include -isystem /nix/store/kcx4247f638jh1jmmfpipc8288323781-libXau-1.0.11-dev/include -isystem /nix/store/a4hk66b25gpi1dpnzv7098nf6zaq63xq-libXrender-0.9.11-dev/include -isystem /nix/store/a4hk66b25gpi1dpnzv7098nf6zaq63xq-libXrender-0.9.11-dev/include -isystem /nix/store/qzjbzg8is4zmsp57v922rf1l707wvzym-libX11-1.8.9-dev/include -isystem /nix/store/qzjbzg8is4zmsp57v922rf1l707wvzym-libX11-1.8.9-dev/include -isystem /nix/store/5msh3j5zn57crhfk1sd933rpja28kzv1-libxcb-1.17.0-dev/include -isystem /nix/store/5msh3j5zn57crhfk1sd933rpja28kzv1-libxcb-1.17.0-dev/include -isystem /nix/store/dz2mjwyvs1l3vvvp5izx0xpxq1vvw075-openssl-3.0.13-dev/include -isystem /nix/store/dz2mjwyvs1l3vvvp5izx0xpxq1vvw075-openssl-3.0.13-dev/include -isystem /nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/include -isystem /nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/include -isystem /nix/store/i6d6yqh7z6zqcdlizpp2qsq429a5pi1c-librsvg-2.58.1-dev/include -isystem /nix/store/i6d6yqh7z6zqcdlizpp2qsq429a5pi1c-librsvg-2.58.1-dev/include -isystem /nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/include -isystem /nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/include -isystem /nix/store/dq03m14rqjvbz6pw42g555df4khh4bvr-zlib-1.3.1-dev/include -isystem /nix/store/dq03m14rqjvbz6pw42g555df4khh4bvr-zlib-1.3.1-dev/include -isystem /nix/store/sgkd52qmdvcnqgddnv9js65yyn8rfjhz-libffi-3.4.6-dev/include -isystem /nix/store/sgkd52qmdvcnqgddnv9js65yyn8rfjhz-libffi-3.4.6-dev/include -isystem /nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/include -isystem /nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/include -isystem /nix/store/k0nyidqrj3flins3fy2l0gbx36b0b5dn-glibc-iconv-2.39/include -isystem /nix/store/k0nyidqrj3flins3fy2l0gbx36b0b5dn-glibc-iconv-2.39/include -isystem /nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/include -isystem /nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/include -isystem /nix/store/jmw6p3s282n6w6c7703iilghg7fsrkkz-libtiff-4.6.0-dev/include -isystem /nix/store/jmw6p3s282n6w6c7703iilghg7fsrkkz-libtiff-4.6.0-dev/include -isystem /nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/include -isystem /nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/include -isystem /nix/store/12x20nwp0ff0xh1licyk7s5x4yvrar8i-libjpeg-turbo-3.0.3-dev/include -isystem /nix/store/12x20nwp0ff0xh1licyk7s5x4yvrar8i-libjpeg-turbo-3.0.3-dev/include -isystem /nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/include -isystem /nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/include -isystem /nix/store/q44z8rysv49g14gn28wcc2z68rqjdxcq-xz-5.4.6-dev/include -isystem /nix/store/q44z8rysv49g14gn28wcc2z68rqjdxcq-xz-5.4.6-dev/include -isystem /nix/store/4i4z8z68605bjs91mkshqhmnpn8bxwmb-zstd-1.5.6-dev/include -isystem /nix/store/4i4z8z68605bjs91mkshqhmnpn8bxwmb-zstd-1.5.6-dev/include -isystem /nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/include -isystem /nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/include -isystem /nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/include -isystem /nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/include -isystem /nix/store/hfclhmwn3vaydbnlmi5jlxnyqa6kickq-fontconfig-2.15.0-dev/include -isystem /nix/store/hfclhmwn3vaydbnlmi5jlxnyqa6kickq-fontconfig-2.15.0-dev/include -isystem /nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/include -isystem /nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/include -isystem /nix/store/88326pg3k1s5nws94zava87x99ywnp39-bzip2-1.0.8-dev/include -isystem /nix/store/88326pg3k1s5nws94zava87x99ywnp39-bzip2-1.0.8-dev/include -isystem /nix/store/swpadsv3kffpixpgz3d7x2s20b1l3j38-brotli-1.1.0-dev/include -isystem /nix/store/swpadsv3kffpixpgz3d7x2s20b1l3j38-brotli-1.1.0-dev/include -isystem /nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/include -isystem /nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/include -isystem /nix/store/12zpl39jcq7i8qq22zscfnhpvazx7707-libXext-1.3.6-dev/include -isystem /nix/store/12zpl39jcq7i8qq22zscfnhpvazx7707-libXext-1.3.6-dev/include -isystem /nix/store/liak2ih1rjid0yz7my7l5azmxpmjlvvq-xorgproto-2024.1/include -isystem /nix/store/liak2ih1rjid0yz7my7l5azmxpmjlvvq-xorgproto-2024.1/include -isystem /nix/store/kcx4247f638jh1jmmfpipc8288323781-libXau-1.0.11-dev/include -isystem /nix/store/kcx4247f638jh1jmmfpipc8288323781-libXau-1.0.11-dev/include -isystem /nix/store/a4hk66b25gpi1dpnzv7098nf6zaq63xq-libXrender-0.9.11-dev/include -isystem /nix/store/a4hk66b25gpi1dpnzv7098nf6zaq63xq-libXrender-0.9.11-dev/include -isystem /nix/store/qzjbzg8is4zmsp57v922rf1l707wvzym-libX11-1.8.9-dev/include -isystem /nix/store/qzjbzg8is4zmsp57v922rf1l707wvzym-libX11-1.8.9-dev/include -isystem /nix/store/5msh3j5zn57crhfk1sd933rpja28kzv1-libxcb-1.17.0-dev/include -isystem /nix/store/5msh3j5zn57crhfk1sd933rpja28kzv1-libxcb-1.17.0-dev/include -isystem /nix/store/dz2mjwyvs1l3vvvp5izx0xpxq1vvw075-openssl-3.0.13-dev/include -isystem /nix/store/dz2mjwyvs1l3vvvp5izx0xpxq1vvw075-openssl-3.0.13-dev/include"
declare -x NIX_CFLAGS_COMPILE_FOR_TARGET=" -isystem /nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/include -isystem /nix/store/i6d6yqh7z6zqcdlizpp2qsq429a5pi1c-librsvg-2.58.1-dev/include -isystem /nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/include -isystem /nix/store/dq03m14rqjvbz6pw42g555df4khh4bvr-zlib-1.3.1-dev/include -isystem /nix/store/sgkd52qmdvcnqgddnv9js65yyn8rfjhz-libffi-3.4.6-dev/include -isystem /nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/include -isystem /nix/store/k0nyidqrj3flins3fy2l0gbx36b0b5dn-glibc-iconv-2.39/include -isystem /nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/include -isystem /nix/store/jmw6p3s282n6w6c7703iilghg7fsrkkz-libtiff-4.6.0-dev/include -isystem /nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/include -isystem /nix/store/12x20nwp0ff0xh1licyk7s5x4yvrar8i-libjpeg-turbo-3.0.3-dev/include -isystem /nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/include -isystem /nix/store/q44z8rysv49g14gn28wcc2z68rqjdxcq-xz-5.4.6-dev/include -isystem /nix/store/4i4z8z68605bjs91mkshqhmnpn8bxwmb-zstd-1.5.6-dev/include -isystem /nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/include -isystem /nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/include -isystem /nix/store/hfclhmwn3vaydbnlmi5jlxnyqa6kickq-fontconfig-2.15.0-dev/include -isystem /nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/include -isystem /nix/store/88326pg3k1s5nws94zava87x99ywnp39-bzip2-1.0.8-dev/include -isystem /nix/store/swpadsv3kffpixpgz3d7x2s20b1l3j38-brotli-1.1.0-dev/include -isystem /nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/include -isystem /nix/store/12zpl39jcq7i8qq22zscfnhpvazx7707-libXext-1.3.6-dev/include -isystem /nix/store/liak2ih1rjid0yz7my7l5azmxpmjlvvq-xorgproto-2024.1/include -isystem /nix/store/kcx4247f638jh1jmmfpipc8288323781-libXau-1.0.11-dev/include -isystem /nix/store/a4hk66b25gpi1dpnzv7098nf6zaq63xq-libXrender-0.9.11-dev/include -isystem /nix/store/qzjbzg8is4zmsp57v922rf1l707wvzym-libX11-1.8.9-dev/include -isystem /nix/store/5msh3j5zn57crhfk1sd933rpja28kzv1-libxcb-1.17.0-dev/include -isystem /nix/store/dz2mjwyvs1l3vvvp5izx0xpxq1vvw075-openssl-3.0.13-dev/include"
declare -x NIX_ENFORCE_NO_NATIVE="1"
declare -x NIX_GCROOT="/nix/store/mx3rg6h0f3l911fx0hwjrw4hnj58afib-nix-shell-env"
declare -x NIX_HARDENING_ENABLE="bindnow format fortify fortify3 pic relro stackprotector strictoverflow"
declare -x NIX_LDFLAGS="-rpath /home/nixos/klick/outputs/out/lib  -L/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0/lib -L/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0/lib -L/nix/store/971g0fka30djkcww2ddpx7q66dr86c1q-zlib-1.3.1/lib -L/nix/store/971g0fka30djkcww2ddpx7q66dr86c1q-zlib-1.3.1/lib -L/nix/store/nj9g42fdsm8l2z43kfcahch3px2q209a-libffi-3.4.6/lib -L/nix/store/nj9g42fdsm8l2z43kfcahch3px2q209a-libffi-3.4.6/lib -L/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/lib -L/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/lib -L/nix/store/nm9608b5y801fq2p73nl7k80z8kcbmh2-glib-2.80.2/lib -L/nix/store/nm9608b5y801fq2p73nl7k80z8kcbmh2-glib-2.80.2/lib -L/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/lib -L/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/lib -L/nix/store/zhbvxa3v0pm7r16fj6hhshc9zdbc50fc-libjpeg-turbo-3.0.3/lib -L/nix/store/zhbvxa3v0pm7r16fj6hhshc9zdbc50fc-libjpeg-turbo-3.0.3/lib -L/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/lib -L/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/lib -L/nix/store/l58j571nhm1ydqp247wk03gqf2ypz1yx-xz-5.4.6/lib -L/nix/store/l58j571nhm1ydqp247wk03gqf2ypz1yx-xz-5.4.6/lib -L/nix/store/sdv9z5jh502gwyh9m959ya6a2pc8skrk-zstd-1.5.6/lib -L/nix/store/sdv9z5jh502gwyh9m959ya6a2pc8skrk-zstd-1.5.6/lib -L/nix/store/d4nh3gk0vl5x5ap33yrjl2d0vi36bn1j-libtiff-4.6.0/lib -L/nix/store/d4nh3gk0vl5x5ap33yrjl2d0vi36bn1j-libtiff-4.6.0/lib -L/nix/store/h6v38d224rxbwbfj95wi3cq3gnmb9fr5-libpng-apng-1.6.43/lib -L/nix/store/h6v38d224rxbwbfj95wi3cq3gnmb9fr5-libpng-apng-1.6.43/lib -L/nix/store/3jbl3zgj68ff6cngbzbkk82y1ckd5552-gdk-pixbuf-2.42.12/lib -L/nix/store/3jbl3zgj68ff6cngbzbkk82y1ckd5552-gdk-pixbuf-2.42.12/lib -L/nix/store/wydmsg7fpk0hzzxpjwj94rys5p7crr77-bzip2-1.0.8/lib -L/nix/store/wydmsg7fpk0hzzxpjwj94rys5p7crr77-bzip2-1.0.8/lib -L/nix/store/9rcw7xrfi3qnwrs84n4jrdafna9i1zbw-brotli-1.1.0-lib/lib -L/nix/store/9rcw7xrfi3qnwrs84n4jrdafna9i1zbw-brotli-1.1.0-lib/lib -L/nix/store/y4r2jq7d5iraqs7s0ggd03lb9p86b4yh-freetype-2.13.2/lib -L/nix/store/y4r2jq7d5iraqs7s0ggd03lb9p86b4yh-freetype-2.13.2/lib -L/nix/store/jlf6951b8ir7zisvypy26xn43jdsv9vk-fontconfig-2.15.0-lib/lib -L/nix/store/jlf6951b8ir7zisvypy26xn43jdsv9vk-fontconfig-2.15.0-lib/lib -L/nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/lib -L/nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/lib -L/nix/store/4vrnbslzps7jxmns5pxpfxfzf2089zcz-libXau-1.0.11/lib -L/nix/store/4vrnbslzps7jxmns5pxpfxfzf2089zcz-libXau-1.0.11/lib -L/nix/store/dx2w7iwdvzfqd67m7cqglbsg4g3da09b-libXext-1.3.6/lib -L/nix/store/dx2w7iwdvzfqd67m7cqglbsg4g3da09b-libXext-1.3.6/lib -L/nix/store/f6qp7vmgd87xvdag7iqmqnwf3ib8alia-libxcb-1.17.0/lib -L/nix/store/f6qp7vmgd87xvdag7iqmqnwf3ib8alia-libxcb-1.17.0/lib -L/nix/store/9hly244f95f2zmnr0mwsqingpyyr5yjp-libX11-1.8.9/lib -L/nix/store/9hly244f95f2zmnr0mwsqingpyyr5yjp-libX11-1.8.9/lib -L/nix/store/qy182fivqd9phk55f1m3i8rqwi1wfw80-libXrender-0.9.11/lib -L/nix/store/qy182fivqd9phk55f1m3i8rqwi1wfw80-libXrender-0.9.11/lib -L/nix/store/09788nmfm9gz27skmsr1cla96gsh938c-cairo-1.18.0/lib -L/nix/store/09788nmfm9gz27skmsr1cla96gsh938c-cairo-1.18.0/lib -L/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/lib -L/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/lib -L/nix/store/8bdd933v69w05k5v8hfcq74bi1f9545k-openssl-3.0.13/lib -L/nix/store/8bdd933v69w05k5v8hfcq74bi1f9545k-openssl-3.0.13/lib -L/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0/lib -L/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0/lib -L/nix/store/971g0fka30djkcww2ddpx7q66dr86c1q-zlib-1.3.1/lib -L/nix/store/971g0fka30djkcww2ddpx7q66dr86c1q-zlib-1.3.1/lib -L/nix/store/nj9g42fdsm8l2z43kfcahch3px2q209a-libffi-3.4.6/lib -L/nix/store/nj9g42fdsm8l2z43kfcahch3px2q209a-libffi-3.4.6/lib -L/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/lib -L/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/lib -L/nix/store/nm9608b5y801fq2p73nl7k80z8kcbmh2-glib-2.80.2/lib -L/nix/store/nm9608b5y801fq2p73nl7k80z8kcbmh2-glib-2.80.2/lib -L/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/lib -L/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/lib -L/nix/store/zhbvxa3v0pm7r16fj6hhshc9zdbc50fc-libjpeg-turbo-3.0.3/lib -L/nix/store/zhbvxa3v0pm7r16fj6hhshc9zdbc50fc-libjpeg-turbo-3.0.3/lib -L/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/lib -L/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/lib -L/nix/store/l58j571nhm1ydqp247wk03gqf2ypz1yx-xz-5.4.6/lib -L/nix/store/l58j571nhm1ydqp247wk03gqf2ypz1yx-xz-5.4.6/lib -L/nix/store/sdv9z5jh502gwyh9m959ya6a2pc8skrk-zstd-1.5.6/lib -L/nix/store/sdv9z5jh502gwyh9m959ya6a2pc8skrk-zstd-1.5.6/lib -L/nix/store/d4nh3gk0vl5x5ap33yrjl2d0vi36bn1j-libtiff-4.6.0/lib -L/nix/store/d4nh3gk0vl5x5ap33yrjl2d0vi36bn1j-libtiff-4.6.0/lib -L/nix/store/h6v38d224rxbwbfj95wi3cq3gnmb9fr5-libpng-apng-1.6.43/lib -L/nix/store/h6v38d224rxbwbfj95wi3cq3gnmb9fr5-libpng-apng-1.6.43/lib -L/nix/store/3jbl3zgj68ff6cngbzbkk82y1ckd5552-gdk-pixbuf-2.42.12/lib -L/nix/store/3jbl3zgj68ff6cngbzbkk82y1ckd5552-gdk-pixbuf-2.42.12/lib -L/nix/store/wydmsg7fpk0hzzxpjwj94rys5p7crr77-bzip2-1.0.8/lib -L/nix/store/wydmsg7fpk0hzzxpjwj94rys5p7crr77-bzip2-1.0.8/lib -L/nix/store/9rcw7xrfi3qnwrs84n4jrdafna9i1zbw-brotli-1.1.0-lib/lib -L/nix/store/9rcw7xrfi3qnwrs84n4jrdafna9i1zbw-brotli-1.1.0-lib/lib -L/nix/store/y4r2jq7d5iraqs7s0ggd03lb9p86b4yh-freetype-2.13.2/lib -L/nix/store/y4r2jq7d5iraqs7s0ggd03lb9p86b4yh-freetype-2.13.2/lib -L/nix/store/jlf6951b8ir7zisvypy26xn43jdsv9vk-fontconfig-2.15.0-lib/lib -L/nix/store/jlf6951b8ir7zisvypy26xn43jdsv9vk-fontconfig-2.15.0-lib/lib -L/nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/lib -L/nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/lib -L/nix/store/4vrnbslzps7jxmns5pxpfxfzf2089zcz-libXau-1.0.11/lib -L/nix/store/4vrnbslzps7jxmns5pxpfxfzf2089zcz-libXau-1.0.11/lib -L/nix/store/dx2w7iwdvzfqd67m7cqglbsg4g3da09b-libXext-1.3.6/lib -L/nix/store/dx2w7iwdvzfqd67m7cqglbsg4g3da09b-libXext-1.3.6/lib -L/nix/store/f6qp7vmgd87xvdag7iqmqnwf3ib8alia-libxcb-1.17.0/lib -L/nix/store/f6qp7vmgd87xvdag7iqmqnwf3ib8alia-libxcb-1.17.0/lib -L/nix/store/9hly244f95f2zmnr0mwsqingpyyr5yjp-libX11-1.8.9/lib -L/nix/store/9hly244f95f2zmnr0mwsqingpyyr5yjp-libX11-1.8.9/lib -L/nix/store/qy182fivqd9phk55f1m3i8rqwi1wfw80-libXrender-0.9.11/lib -L/nix/store/qy182fivqd9phk55f1m3i8rqwi1wfw80-libXrender-0.9.11/lib -L/nix/store/09788nmfm9gz27skmsr1cla96gsh938c-cairo-1.18.0/lib -L/nix/store/09788nmfm9gz27skmsr1cla96gsh938c-cairo-1.18.0/lib -L/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/lib -L/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/lib -L/nix/store/8bdd933v69w05k5v8hfcq74bi1f9545k-openssl-3.0.13/lib -L/nix/store/8bdd933v69w05k5v8hfcq74bi1f9545k-openssl-3.0.13/lib"
declare -x NIX_LDFLAGS_FOR_TARGET=" -L/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0/lib -L/nix/store/971g0fka30djkcww2ddpx7q66dr86c1q-zlib-1.3.1/lib -L/nix/store/nj9g42fdsm8l2z43kfcahch3px2q209a-libffi-3.4.6/lib -L/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/lib -L/nix/store/nm9608b5y801fq2p73nl7k80z8kcbmh2-glib-2.80.2/lib -L/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/lib -L/nix/store/zhbvxa3v0pm7r16fj6hhshc9zdbc50fc-libjpeg-turbo-3.0.3/lib -L/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/lib -L/nix/store/l58j571nhm1ydqp247wk03gqf2ypz1yx-xz-5.4.6/lib -L/nix/store/sdv9z5jh502gwyh9m959ya6a2pc8skrk-zstd-1.5.6/lib -L/nix/store/d4nh3gk0vl5x5ap33yrjl2d0vi36bn1j-libtiff-4.6.0/lib -L/nix/store/h6v38d224rxbwbfj95wi3cq3gnmb9fr5-libpng-apng-1.6.43/lib -L/nix/store/3jbl3zgj68ff6cngbzbkk82y1ckd5552-gdk-pixbuf-2.42.12/lib -L/nix/store/wydmsg7fpk0hzzxpjwj94rys5p7crr77-bzip2-1.0.8/lib -L/nix/store/9rcw7xrfi3qnwrs84n4jrdafna9i1zbw-brotli-1.1.0-lib/lib -L/nix/store/y4r2jq7d5iraqs7s0ggd03lb9p86b4yh-freetype-2.13.2/lib -L/nix/store/jlf6951b8ir7zisvypy26xn43jdsv9vk-fontconfig-2.15.0-lib/lib -L/nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/lib -L/nix/store/4vrnbslzps7jxmns5pxpfxfzf2089zcz-libXau-1.0.11/lib -L/nix/store/dx2w7iwdvzfqd67m7cqglbsg4g3da09b-libXext-1.3.6/lib -L/nix/store/f6qp7vmgd87xvdag7iqmqnwf3ib8alia-libxcb-1.17.0/lib -L/nix/store/9hly244f95f2zmnr0mwsqingpyyr5yjp-libX11-1.8.9/lib -L/nix/store/qy182fivqd9phk55f1m3i8rqwi1wfw80-libXrender-0.9.11/lib -L/nix/store/09788nmfm9gz27skmsr1cla96gsh938c-cairo-1.18.0/lib -L/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/lib -L/nix/store/8bdd933v69w05k5v8hfcq74bi1f9545k-openssl-3.0.13/lib"
declare -x NIX_PATH="/home/nixos/.nix-defexpr/channels:nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root/channels"
declare -x NIX_PKG_CONFIG_WRAPPER_TARGET_TARGET_x86_64_unknown_linux_gnu="1"
declare -x NIX_PROFILES="/run/current-system/sw /nix/var/nix/profiles/default /etc/profiles/per-user/nixos /home/nixos/.local/state/nix/profile /nix/profile /home/nixos/.nix-profile"
declare -x NIX_STORE="/nix/store"
declare -x NIX_USER_PROFILE_DIR="/nix/var/nix/profiles/per-user/nixos"
declare -x NM="nm"
declare -x NM_FOR_TARGET="nm"
declare -x NODE_PATH="/nix/store/r5i8x7idnrk62q7d2ns8nazqnj02sdjw-tailwindcss-3.4.3/lib/node_modules:/nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/lib/node_modules"
declare -x NO_AT_BRIDGE="1"
declare -x OBJCOPY="objcopy"
declare -x OBJCOPY_FOR_TARGET="objcopy"
declare -x OBJDUMP="objdump"
declare -x OBJDUMP_FOR_TARGET="objdump"
declare -x OLDPWD="/home/nixos/klick"
declare -x PAGER="less"
declare -x PATH="/run/wrappers/bin:/nix/store/pdqndw2kgjv8l3kd5ii0c833jqmxdanq-patchelf-0.15.0/bin:/nix/store/mpm3i0sbqc9svfch6a17179fs64dz2kv-gcc-wrapper-13.3.0/bin:/nix/store/zc0nsv23pakbafngjy32kvhfzb16as43-gcc-13.3.0/bin:/nix/store/082x03cmpnsqkfp4ljrhsadz68rh3q1h-glibc-2.39-52-bin/bin:/nix/store/i7qhgc0bs725qw3wdanznfkdna4z2ns2-coreutils-9.5/bin:/nix/store/l46fjkzva0bhvy9p2r7p4vi68kr7a1db-binutils-wrapper-2.41/bin:/nix/store/wwfrj9kvfi14xclc38qfwm71ah6aawdh-binutils-2.41/bin:/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0/bin:/nix/store/lzra8hqqfzi572i02qmvmn3q7i3vh95n-cargo-zigbuild-0.18.4/bin:/nix/store/adl2h1xlljlr8bgxp2mxl428q3vzf5h1-trunk-0.20.2/bin:/nix/store/jsbha1gg6lzzj7icrg3h0npgm8vwf80c-git-2.45.1/bin:/nix/store/l2mnzn1lplnbkc7rsj3vvcd60jdn8qfi-tig-2.5.10/bin:/nix/store/2hfzaqv42iwrpk3ya24cnjsklz6f68lw-pkg-config-wrapper-0.29.2/bin:/nix/store/i1873qgj1pg60af9vc0gpjw79fk5mpjq-just-1.29.1/bin:/nix/store/r5i8x7idnrk62q7d2ns8nazqnj02sdjw-tailwindcss-3.4.3/bin:/nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2/bin:/nix/store/lx6fv821qp53pzkjqpyvknawl4q1djyl-pandoc-cli-3.1.11.1/bin:/nix/store/z7wk771rz3bi3450b2ay4nd5y5xim0ms-texlive-2023-env/bin:/nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/bin:/nix/store/gf8fvv3n09b9ww68rnlhdffv93jc2pac-gettext-0.21.1/bin:/nix/store/p1y3zy8435yf7n95iyhcyn8vz8by9hqa-glib-2.80.2-bin/bin:/nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/bin:/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/bin:/nix/store/1x2kc67whddywrz9vlbz9vdiziqn9d15-libjpeg-turbo-3.0.3-bin/bin:/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/bin:/nix/store/qqhrymypl970jc6npvi9a6sikhr84mdf-xz-5.4.6-bin/bin:/nix/store/gsrsyrcqscmq7yq54gyc7xsr3mfwvj1k-zstd-1.5.6-bin/bin:/nix/store/sdv9z5jh502gwyh9m959ya6a2pc8skrk-zstd-1.5.6/bin:/nix/store/7xsn1r7qhi2gqcnhx54zpskjzrx4jmma-libtiff-4.6.0-bin/bin:/nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/bin:/nix/store/3jbl3zgj68ff6cngbzbkk82y1ckd5552-gdk-pixbuf-2.42.12/bin:/nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/bin:/nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/bin:/nix/store/cyc3v8qfkhn4r38a8s5d7f2c33q624mz-bzip2-1.0.8-bin/bin:/nix/store/gc3kxhjip6zhm6h5g4hhdc9lqjl5kiwb-brotli-1.1.0/bin:/nix/store/9dny6j912x8bdvd53q4lgcz6m5xncvv9-fontconfig-2.15.0-bin/bin:/nix/store/rc237l683018a3xja66d0qdpdkaxyj2i-librsvg-2.58.1/bin:/nix/store/3cmxly54pvpv20m6cfpj96j18w8gbp02-openssl-3.0.13-bin/bin:/nix/store/i7qhgc0bs725qw3wdanznfkdna4z2ns2-coreutils-9.5/bin:/nix/store/rr1yixvn0z63mgq9s04ig9j9qlz23s2g-findutils-4.9.0/bin:/nix/store/j4gkc44c1pwl5ccgxm83s4r746bsdcw9-diffutils-3.10/bin:/nix/store/ks6c62g0m3gqrs5i7m0cv6d6aqhdvirn-gnused-4.9/bin:/nix/store/md9apn3290h7kv0x198ihaaa3k6icg4b-gnugrep-3.11/bin:/nix/store/hkx0wcm23i9ihqlysri8n41kl232kawb-gawk-5.2.2/bin:/nix/store/95ljdxg4drk1iq8jkjfq2c0z5vbwv8vm-gnutar-1.35/bin:/nix/store/nc9lq1lra01932rfyclq3gsh82cxbmii-gzip-1.13/bin:/nix/store/cyc3v8qfkhn4r38a8s5d7f2c33q624mz-bzip2-1.0.8-bin/bin:/nix/store/18z454gyz0wpb641rw6gpqk0vi4wbxy6-gnumake-4.4.1/bin:/nix/store/agkxax48k35wdmkhmmija2i2sxg8i7ny-bash-5.2p26/bin:/nix/store/r05c0lpbnjc8dg3rrr3ck7s07pjy86j3-patch-2.7.6/bin:/nix/store/qqhrymypl970jc6npvi9a6sikhr84mdf-xz-5.4.6-bin/bin:/nix/store/qcqmiq1mb3pkk2bxbj6d6gb2fk9knk8l-file-5.45/bin:/run/wrappers/bin:/home/nixos/.nix-profile/bin:/nix/profile/bin:/home/nixos/.local/state/nix/profile/bin:/etc/profiles/per-user/nixos/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:/home/nixos/.nix-profile/bin:/nix/profile/bin:/home/nixos/.local/state/nix/profile/bin:/etc/profiles/per-user/nixos/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin"
declare -x PKG_CONFIG_FOR_TARGET="pkg-config"
declare -x PKG_CONFIG_PATH_FOR_TARGET="/nix/store/i6d6yqh7z6zqcdlizpp2qsq429a5pi1c-librsvg-2.58.1-dev/lib/pkgconfig:/nix/store/2nrdpdpqsi94arfv3xh9pa3ywqpa38ry-glib-2.80.2-dev/lib/pkgconfig:/nix/store/dq03m14rqjvbz6pw42g555df4khh4bvr-zlib-1.3.1-dev/lib/pkgconfig:/nix/store/sgkd52qmdvcnqgddnv9js65yyn8rfjhz-libffi-3.4.6-dev/lib/pkgconfig:/nix/store/n8qmgq6pbv5jbmib1gag3vnq8kbmqsm0-gdk-pixbuf-2.42.12-dev/lib/pkgconfig:/nix/store/jmw6p3s282n6w6c7703iilghg7fsrkkz-libtiff-4.6.0-dev/lib/pkgconfig:/nix/store/d5d0lz3qnlqx6pw2mzkfcjy3fvwvgbcz-libdeflate-1.20/lib/pkgconfig:/nix/store/12x20nwp0ff0xh1licyk7s5x4yvrar8i-libjpeg-turbo-3.0.3-dev/lib/pkgconfig:/nix/store/rx6iaqlg352pa4v66ga7b54wcg4fjl0k-libwebp-1.4.0/lib/pkgconfig:/nix/store/q44z8rysv49g14gn28wcc2z68rqjdxcq-xz-5.4.6-dev/lib/pkgconfig:/nix/store/4i4z8z68605bjs91mkshqhmnpn8bxwmb-zstd-1.5.6-dev/lib/pkgconfig:/nix/store/pdi0gn4khgigaxzsmb9kgkw5i6pdsvx8-libpng-apng-1.6.43-dev/lib/pkgconfig:/nix/store/177z07c2gkqvdni3wrv68kxbgxg5jc5j-cairo-1.18.0-dev/lib/pkgconfig:/nix/store/hfclhmwn3vaydbnlmi5jlxnyqa6kickq-fontconfig-2.15.0-dev/lib/pkgconfig:/nix/store/pwpvbpih932b677cl20pn27ylvm5rgnn-freetype-2.13.2-dev/lib/pkgconfig:/nix/store/88326pg3k1s5nws94zava87x99ywnp39-bzip2-1.0.8-dev/lib/pkgconfig:/nix/store/swpadsv3kffpixpgz3d7x2s20b1l3j38-brotli-1.1.0-dev/lib/pkgconfig:/nix/store/avzjkq3q95vjisfpx018ff8l9zlxn9hf-pixman-0.43.4/lib/pkgconfig:/nix/store/12zpl39jcq7i8qq22zscfnhpvazx7707-libXext-1.3.6-dev/lib/pkgconfig:/nix/store/liak2ih1rjid0yz7my7l5azmxpmjlvvq-xorgproto-2024.1/share/pkgconfig:/nix/store/kcx4247f638jh1jmmfpipc8288323781-libXau-1.0.11-dev/lib/pkgconfig:/nix/store/a4hk66b25gpi1dpnzv7098nf6zaq63xq-libXrender-0.9.11-dev/lib/pkgconfig:/nix/store/qzjbzg8is4zmsp57v922rf1l707wvzym-libX11-1.8.9-dev/lib/pkgconfig:/nix/store/5msh3j5zn57crhfk1sd933rpja28kzv1-libxcb-1.17.0-dev/lib/pkgconfig:/nix/store/dz2mjwyvs1l3vvvp5izx0xpxq1vvw075-openssl-3.0.13-dev/lib/pkgconfig"
declare -x PWD="/home/nixos/klick"
declare -x QTWEBKIT_PLUGIN_PATH="/home/nixos/.nix-profile/lib/mozilla/plugins/:/nix/profile/lib/mozilla/plugins/:/home/nixos/.local/state/nix/profile/lib/mozilla/plugins/:/etc/profiles/per-user/nixos/lib/mozilla/plugins/:/nix/var/nix/profiles/default/lib/mozilla/plugins/:/run/current-system/sw/lib/mozilla/plugins/"
declare -x RANLIB="ranlib"
declare -x RANLIB_FOR_TARGET="ranlib"
declare -x READELF="readelf"
declare -x READELF_FOR_TARGET="readelf"
declare -x SHELL="/nix/store/4gk6fjv5rpms3rznq19v6cxp5fa6w0xv-bash-wrapper.sh"
declare -x SHLVL="1"
declare -x SIZE="size"
declare -x SIZE_FOR_TARGET="size"
declare -x SOURCE_DATE_EPOCH="315532800"
declare -x SSH_ASKPASS=""
declare -x SSH_CLIENT="172.28.160.1 59943 22"
declare -x SSH_CONNECTION="172.28.160.1 59943 172.28.165.91 22"
declare -x SSH_TTY="/dev/pts/3"
declare -x STRINGS="strings"
declare -x STRINGS_FOR_TARGET="strings"
declare -x STRIP="strip"
declare -x STRIP_FOR_TARGET="strip"
declare -x TEMP="/tmp/nix-shell.9quq4r"
declare -x TEMPDIR="/tmp/nix-shell.9quq4r"
declare -x TERM="xterm-256color"
declare -x TERMINFO_DIRS="/home/nixos/.nix-profile/share/terminfo:/nix/profile/share/terminfo:/home/nixos/.local/state/nix/profile/share/terminfo:/etc/profiles/per-user/nixos/share/terminfo:/nix/var/nix/profiles/default/share/terminfo:/run/current-system/sw/share/terminfo"
declare -x TMP="/tmp/nix-shell.9quq4r"
declare -x TMPDIR="/tmp/nix-shell.9quq4r"
declare -x TZDIR="/etc/zoneinfo"
declare -x USER="nixos"
declare -x WSLPATH=""
declare -x XCURSOR_PATH="/home/nixos/.icons:/home/nixos/.local/share/icons:/home/nixos/.nix-profile/share/icons:/home/nixos/.nix-profile/share/pixmaps:/nix/profile/share/icons:/nix/profile/share/pixmaps:/home/nixos/.local/state/nix/profile/share/icons:/home/nixos/.local/state/nix/profile/share/pixmaps:/etc/profiles/per-user/nixos/share/icons:/etc/profiles/per-user/nixos/share/pixmaps:/nix/var/nix/profiles/default/share/icons:/nix/var/nix/profiles/default/share/pixmaps:/run/current-system/sw/share/icons:/run/current-system/sw/share/pixmaps"
declare -x XDG_CONFIG_DIRS="/etc/xdg:/home/nixos/.nix-profile/etc/xdg:/nix/profile/etc/xdg:/home/nixos/.local/state/nix/profile/etc/xdg:/etc/profiles/per-user/nixos/etc/xdg:/nix/var/nix/profiles/default/etc/xdg:/run/current-system/sw/etc/xdg"
declare -x XDG_DATA_DIRS="/nix/store/raivb3kdipvmgkyh9aqw7wyrw4y6qfwn-desktops/share:/home/nixos/.nix-profile/share:/nix/profile/share:/home/nixos/.local/state/nix/profile/share:/etc/profiles/per-user/nixos/share:/nix/var/nix/profiles/default/share:/run/current-system/sw/share"
declare -x XDG_RUNTIME_DIR="/run/user/1000"
declare -x XDG_SESSION_CLASS="user"
declare -x XDG_SESSION_ID="120"
declare -x XDG_SESSION_TYPE="tty"
declare -x __ETC_PROFILE_DONE="1"
declare -x __NIXOS_SET_ENVIRONMENT_DONE="1"
declare -x __structuredAttrs=""
declare -x buildInputs="/nix/store/7kh608wd98vgcdh71g9xc3vjqccn7kpm-rust-default-1.79.0 /nix/store/lzra8hqqfzi572i02qmvmn3q7i3vh95n-cargo-zigbuild-0.18.4 /nix/store/adl2h1xlljlr8bgxp2mxl428q3vzf5h1-trunk-0.20.2 /nix/store/jsbha1gg6lzzj7icrg3h0npgm8vwf80c-git-2.45.1 /nix/store/l2mnzn1lplnbkc7rsj3vvcd60jdn8qfi-tig-2.5.10 /nix/store/2hfzaqv42iwrpk3ya24cnjsklz6f68lw-pkg-config-wrapper-0.29.2 /nix/store/i1873qgj1pg60af9vc0gpjw79fk5mpjq-just-1.29.1 /nix/store/r5i8x7idnrk62q7d2ns8nazqnj02sdjw-tailwindcss-3.4.3 /nix/store/74a6mmrgxzcg9axl1gmdz3j2y1bjd13f-nodejs-20.12.2 /nix/store/lx6fv821qp53pzkjqpyvknawl4q1djyl-pandoc-cli-3.1.11.1 /nix/store/z7wk771rz3bi3450b2ay4nd5y5xim0ms-texlive-2023-env /nix/store/i6d6yqh7z6zqcdlizpp2qsq429a5pi1c-librsvg-2.58.1-dev /nix/store/dz2mjwyvs1l3vvvp5izx0xpxq1vvw075-openssl-3.0.13-dev"
declare -x buildPhase=$'{ echo "------------------------------------------------------------";\n  echo " WARNING: the existence of this path is not guaranteed.";\n  echo " It is an internal implementation detail for pkgs.mkShell.";\n  echo "------------------------------------------------------------";\n  echo;\n  # Record all build inputs as runtime dependencies\n  export;\n} >> "$out"\n'
declare -x builder="/nix/store/agkxax48k35wdmkhmmija2i2sxg8i7ny-bash-5.2p26/bin/bash"
declare -x cmakeFlags=""
declare -x configureFlags=""
declare -x depsBuildBuild=""
declare -x depsBuildBuildPropagated=""
declare -x depsBuildTarget=""
declare -x depsBuildTargetPropagated=""
declare -x depsHostHost=""
declare -x depsHostHostPropagated=""
declare -x depsTargetTarget=""
declare -x depsTargetTargetPropagated=""
declare -x doCheck=""
declare -x doInstallCheck=""
declare -x dontAddDisableDepTrack="1"
declare -x export
declare -x mesonFlags=""
declare -x name="nix-shell-env"
declare -x nativeBuildInputs=""
declare -x out="/home/nixos/klick/outputs/out"
declare -x outputs="out"
declare -x patches=""
declare -x phases="buildPhase"
declare -x preferLocalBuild="1"
declare -x propagatedBuildInputs=""
declare -x propagatedNativeBuildInputs=""
declare -x shell="/nix/store/agkxax48k35wdmkhmmija2i2sxg8i7ny-bash-5.2p26/bin/bash"
declare -x shellHook=""
declare -x stdenv="/nix/store/d3dzfy4amjl826fb8j00qp1d9887h7hm-stdenv-linux"
declare -x strictDeps=""
declare -x system="x86_64-linux"