flake: remove pkgsUnfree arg

This commit is contained in:
Matt Sturgeon 2025-01-19 12:55:15 +00:00
parent 998bae9dac
commit fecc892145
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
4 changed files with 8 additions and 29 deletions

View file

@ -5,18 +5,10 @@
}:
{
perSystem =
{
pkgs,
pkgsUnfree,
...
}:
{ pkgs, ... }:
{
checks = pkgs.callPackages ../tests {
inherit
helpers
pkgsUnfree
self
;
inherit helpers self;
};
};
}