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