Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
github-copilot-app # GitHub Copilot
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
github-copilot-app # GitHub Copilot
];
} Package Definition
{
"pname": "github-copilot-app",
"version": "0.2.8",
"src": {
"url": "https://github.com/github/app/releases/download/v0.2.8/GitHub-Copilot-darwin-arm64.dmg",
"sha256": "e472a1d631ddc1ab3cc12d2d756e85ada2c6ca405d8be51b9a6a649e7c8ec9a4"
},
"installPhase": [
"mkdir -p \"$out/Applications/GitHub Copilot.app\" && cp -r \"GitHub Copilot.app\" \"$out/Applications\""
],
"meta": {
"description": "Native client for GitHub Copilot",
"homepage": "https://github.com/github/app"
}
}