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 = {
|
perSystem = {
|
||||||
pkgs,
|
pkgs,
|
||||||
|
pkgsUnfree,
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
_module.args = {
|
_module.args = {
|
||||||
modules = modules pkgs;
|
modules = modules pkgs;
|
||||||
|
modulesUnfree = modules pkgsUnfree;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,11 +2,13 @@
|
||||||
perSystem = {
|
perSystem = {
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
modules,
|
modulesUnfree,
|
||||||
|
pkgsUnfree,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
packages = import ../docs {
|
packages = import ../docs {
|
||||||
inherit modules pkgs;
|
modules = modulesUnfree;
|
||||||
|
pkgs = pkgsUnfree;
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue