12 lines
125 B
Nix
12 lines
125 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
|
||
|
imports = [
|
||
|
"${builtins.toFile "drv" "{}"}"
|
||
|
./declare-enable.nix
|
||
|
./define-enable.nix
|
||
|
];
|
||
|
|
||
|
}
|
||
|
|