Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/content/docs/guides/lib/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,11 @@ stdenv.mkDerivation {
```

This package will be made available on your flake's `packages` output with the same name as the
directory that you created.
directory that you created, under your `namespace`.

```nix
# Example, to add a package named foo under namespace bar in the configuration for a home.
home.packages = [
pkgs.bar.foo
];
```