mirror of
https://github.com/denismhz/flake.git
synced 2025-11-09 08:06:23 +01:00
16 lines
281 B
Nix
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 = {};
|
|
};
|
|
};
|
|
}
|