#!/bin/sh if ! [ -x "$(command -v nix)" ]; then echo "Installing Nix" doas install -d -m755 -o $(id -u) -g $(id -g) /nix doas xbps-install -y xz curl -L https://nixos.org/nix/install | sh echo "Nix has been installed, you should run nix profile install nixpkgs#nix-direnv once profile has been refreshed" fi