mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-14 11:04:11 -05:00
16 lines
197 B
Nix
16 lines
197 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.lighthouse.enable {
|
|
|
|
|
|
services.nebula.networks.test = {
|
|
enable = true;
|
|
isLighthouse = true;
|
|
};
|
|
|
|
}
|