flake/modules/dependency-sets/default.nix
2023-02-12 01:04:57 +01:00

16 lines
281 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
perSystem.options = {
dependencySets = mkOption {
description = "Specially instantiated dependency sets for customized builds";
type = with types; lazyAttrsOf unspecified;
default = {};
};
};
}