#!/nix/store/f15k3dpilmiyv6zgpib289rnjykgr1r4-bash-5.3p9/bin/bash
set -e

export PATH=
for i in /nix/store/i2vmgx46q9hd3z6rigaiman3wl3i2gc4-coreutils-9.9 /nix/store/02vv0r262agf9j5n2y1gmbjvdf12zkl0-gnugrep-3.12 /nix/store/16wfacfgap3chf7mcjnd8dwi85dj4qqi-findutils-4.10.0 /nix/store/bs6y5ycz8hx29pvdplgfhy67vfa403dr-getent-glibc-2.42-47 /nix/store/0bdqq2z98kg2hfn3k60if6pb5fd5p10h-glibc-2.42-47-bin /nix/store/86fly2n8c31ws3lqs9wrx4vzpg2fpazk-shadow-4.18.0 /nix/store/ayal0bmcqnxjvx2bdf5i0p28zbm8n93p-util-linux-2.41.3-bin; do
  PATH=$PATH:$i/bin:$i/sbin
done

_status=0
trap "_status=1 _localstatus=\$?" ERR

#### Activation script snippet tmpfiles:
_localstatus=0
/nix/store/5j9cg6adv3d2l403fcfklz4lmf9fd0l8-systemd-258.3/bin/systemd-tmpfiles --user --create --remove

if (( _localstatus > 0 )); then
  printf "Activation script snippet '%s' failed (%s)\n" "tmpfiles" "$_localstatus"
fi


exit $_status


