mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-11 14:01:00 -05:00
11 lines
253 B
Nix
11 lines
253 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
sops.secrets."netbird/setup_keys/end_user" = { };
|
|
netbird = {
|
|
enable = true;
|
|
opts = {
|
|
management_url = "https://netbird.moosenet.work:443";
|
|
admin_url = "https://netbird.moosenet.work";
|
|
};
|
|
};
|
|
}
|