بنقرة واحدة
home-manager-add-packages
Add Nix packages to the Home Manager configuration
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Add Nix packages to the Home Manager configuration
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Use for math calculations.
Use for date/time.
Rules to minimize token usage
Native macOS built-in screen capture. Saves directly to ~/Desktop using exact system timestamp naming, so agent can automatically detect and read the latest screenshot without manual file paths. macOS only.
Maintain a living context document (plan.md) as a self-note to preserve the original agenda, track progress, and prevent context drift during complex tasks
A meta-skill to create new skills in the default skill directory with proper YAML front matter
استنادا إلى تصنيف SOC المهني
| name | home-manager-add-packages |
| description | Add Nix packages to the Home Manager configuration |
Add Nix packages to ~/.config/home-manager/home.nix and apply with home-manager switch.
~/.config/home-manager/home.nixhome.packages = with pkgs; [ block]; (check for duplicates first)home-manager switch (or home-manager switch --flake ~/.config/home-manager for flakes)# Before
home.packages = with pkgs; [
bun
sqlite
];
# After adding ripgrep
home.packages = with pkgs; [
bun
sqlite
ripgrep
];
Then run home-manager switch to install.
nix-search-cli skill to find the correct namehome-manager switch completed without errors