mirror of
https://github.com/RGBCube/ncc
synced 2025-07-27 18:17:44 +00:00
7 lines
210 B
Nix
7 lines
210 B
Nix
{ config, lib, ... }: let
|
|
inherit (lib) mkValue;
|
|
in {
|
|
options.unfree.allowedNames = mkValue [];
|
|
|
|
config.nixpkgs.config.allowUnfreePredicate = package: lib.elem package.pname config.unfree.allowedNames;
|
|
}
|