12 lines
185 B
Nix
12 lines
185 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
options = {
|
|
drv-backends = mkOption {
|
|
description = "drv-parts backends";
|
|
type = with types; attrsOf raw;
|
|
default = {};
|
|
};
|
|
};
|
|
}
|