Skip to content

Instantly share code, notes, and snippets.

View JonhSHEPARD's full-sized avatar
🌍

Jean-Baptiste B. JonhSHEPARD

🌍
View GitHub Profile
@JonhSHEPARD
JonhSHEPARD / install-copilot.sh
Last active August 20, 2023 00:45
Github Copilot on NixOS
#!/bin/sh
if [ "$EUID" -ne 0 ]
then echo "This script must be run as root"
exit
fi
if [ "$#" -ne 1 ]; then
echo "Usage: ./$0 <path-to-ide"
exit 1