mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-02 00:54:48 +02:00
flake: remove pkgsUnfree
arg
This commit is contained in:
parent
998bae9dac
commit
fecc892145
4 changed files with 8 additions and 29 deletions
|
@ -1,4 +1,3 @@
|
|||
{ inputs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./dev
|
||||
|
@ -10,15 +9,4 @@
|
|||
./tests.nix
|
||||
./wrappers.nix
|
||||
];
|
||||
|
||||
perSystem =
|
||||
{ system, ... }:
|
||||
{
|
||||
_module.args = {
|
||||
pkgsUnfree = import inputs.nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,18 +5,10 @@
|
|||
}:
|
||||
{
|
||||
perSystem =
|
||||
{
|
||||
pkgs,
|
||||
pkgsUnfree,
|
||||
...
|
||||
}:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
checks = pkgs.callPackages ../tests {
|
||||
inherit
|
||||
helpers
|
||||
pkgsUnfree
|
||||
self
|
||||
;
|
||||
inherit helpers self;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue