12 lines
137 B
Nix
12 lines
137 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.myConfig = {
|
|
tradebyte.enable = lib.mkEnableOption "TB.config";
|
|
};
|
|
|
|
imports = [
|
|
./lxc.nix
|
|
];
|
|
}
|
|
|