1
1
Fork 0
nixos/options/custom/services/netbird.nix
Myned bf2f2d5485
netbird: initial disabled service
Signed-off-by: Myned <dev@bjork.tech>
2024-09-12 19:41:21 -05:00

17 lines
290 B
Nix

{ 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;
};
};
}