1
1
Fork 0
nixos/options/custom/services/netbird.nix

18 lines
292 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.services.netbird;
in {
options.custom.services.netbird.enable = mkOption {default = false;};
config = mkIf cfg.enable {
# https://github.com/netbirdio/netbird
services.netbird = {
enable = true;
};
};
}