mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
flake: use unfree nixpkgs to build documentation
This commit is contained in:
parent
2c497de6fb
commit
df7a90127b
2 changed files with 6 additions and 2 deletions
|
@ -31,11 +31,13 @@
|
|||
|
||||
perSystem = {
|
||||
pkgs,
|
||||
pkgsUnfree,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
_module.args = {
|
||||
modules = modules pkgs;
|
||||
modulesUnfree = modules pkgsUnfree;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -2,11 +2,13 @@
|
|||
perSystem = {
|
||||
pkgs,
|
||||
config,
|
||||
modules,
|
||||
modulesUnfree,
|
||||
pkgsUnfree,
|
||||
...
|
||||
}: {
|
||||
packages = import ../docs {
|
||||
inherit modules pkgs;
|
||||
modules = modulesUnfree;
|
||||
pkgs = pkgsUnfree;
|
||||
inherit (pkgs) lib;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue