Skip to content

Commit

Permalink
Add nixvimWithOptions example
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Jun 28, 2024
1 parent 5008a60 commit 53f8472
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,14 @@ inputs = {
environment.systemPackages = [ inputs.nvim.packages.x86_64-linux.nixvim ];
}
```

```nix
{
environment.systemPackages = [
(inputs.nvim.packages.x86_64-linux.nixvimWithOptions {
inherit pkgs;
options.enableMan = false;
})
];
}
```

0 comments on commit 53f8472

Please sign in to comment.