fixup! cluster/simulacrum/nowhere: make optional
This commit is contained in:
parent
059207f4e8
commit
dea2425e27
1 changed files with 7 additions and 5 deletions
|
@ -59,11 +59,13 @@ testers.runNixOSTest {
|
||||||
imports = [
|
imports = [
|
||||||
serviceConfig.simulacrum.settings
|
serviceConfig.simulacrum.settings
|
||||||
./nowhere
|
./nowhere
|
||||||
{
|
({ config, ... }: {
|
||||||
nodes.nowhere.imports = [
|
config = lib.mkIf config.nowhere.enable {
|
||||||
config.flake.nixosModules.port-magic
|
nodes.nowhere.imports = [
|
||||||
];
|
lift.flake.nixosModules.port-magic
|
||||||
}
|
];
|
||||||
|
};
|
||||||
|
})
|
||||||
] ++ allAugments;
|
] ++ allAugments;
|
||||||
|
|
||||||
_module.args = {
|
_module.args = {
|
||||||
|
|
Loading…
Reference in a new issue