1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 18:17:44 +00:00
ncc/modules/common/unfree.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;
}