CrOS/modules/users/lighthouse/setup.nix
2025-01-28 16:55:31 -05:00

16 lines
197 B
Nix

{
lib,
inputs,
config,
pkgs,
...
}:
lib.mkIf config.user.lighthouse.enable {
services.nebula.networks.test = {
enable = true;
isLighthouse = true;
};
}