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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,3 +182,14 @@ typelevelShell = {
[direnv]: https://direnv.net/
[Laika]: https://planet42.github.io/Laika/
[bundix]: https://github.com/nix-community/bundix

### I get a `'error: experimental Nix feature 'nix-command' is disabled; add '--extra-experimental-features nix-command' to enable it'`

Because typelevel-nix uses the [Nix command], which is an experimental feature. You can enable it by adding `--extra-experimental-features nix-command` to your `nix develop` command.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it --extra-experimental-features or --experimental-features? And include flakes or no? This sentence is inconsistent with the example below.


```shell
nix --experimental-features 'nix-command flakes' develop github:typelevel/typelevel-nix#library
```

But if you don't want to type all that, there are different places on your system you can [set it and forget it](https://wiki.nixos.org/wiki/Flakes#Setup).

Loading