Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
open-in-code # OpenInCode
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
open-in-code # OpenInCode
];
}
Package Definition
{
"pname": "open-in-code",
"version": "1.0",
"src": {
"url": "https://github.com/sozercan/OpenInCode/releases/download/v1.0/OpenInCodeLight.zip",
"sha256": "a473c247179c91621ef447f75f3103e1c9bc1459f6622b108e0c7bdd5b6f8367"
},
"installPhase": [
"mkdir -p \"$out/Applications/Open in Code.app\" && cp -r \"Open in Code.app\" \"$out/Applications\""
],
"meta": {
"description": "Finder toolbar app to open current folder in Visual Studio Code",
"homepage": "https://github.com/sozercan/OpenInCode"
}
}