nix
33
总安装量
3
周安装量
#11151
全站排名
安装命令
npx skills add https://github.com/i9wa4/dotfiles --skill nix
Agent 安装分布
claude-code
2
windsurf
1
trae
1
opencode
1
antigravity
1
Skill 文档
Nix Skill
1. nix build
-
YOU MUST: Always use
--no-linkoption withnix buildnix build .#rumdl --no-link -
IMPORTANT: Without
--no-link, a./resultsymlink is created
2. nix run
-
IMPORTANT: Packages registered in packages can be run with
nix runnix run .#pike -- scan -d ./terraform
3. Adding Custom Packages
- YOU MUST: See CONTRIBUTING.md section 1.4.2 for adding new custom packages
- IMPORTANT: Hash acquisition flow
- Get
hashusing nurl:nurl https://github.com/<owner>/<repo> <tag> - Get
vendorHash/cargoHashvia build error (got:line)
- Get
- IMPORTANT: Add
doCheck = false;if tests fail
4. nurl
-
IMPORTANT: nurl generates Nix fetcher calls from repository URLs
nurl https://github.com/rvben/rumdl v0.0.206 -
IMPORTANT: Output can be used directly in fetchFromGitHub
fetchFromGitHub { owner = "rvben"; repo = "rumdl"; rev = "v0.0.206"; hash = "sha256-XXX..."; } -
IMPORTANT: For cargoHash/vendorHash, use build error method (nurl does not support these)