mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-05-22 22:46:56 +02:00
12 lines
248 B
Nix
12 lines
248 B
Nix
# https://github.com/NixOS/nixpkgs/blob/nixos-23.11/nixos/modules/services/networking/dae.nix
|
|
{
|
|
services.dae = {
|
|
enable = true;
|
|
openFirewall = {
|
|
enable = true;
|
|
port = 12345;
|
|
};
|
|
configFile = ./bypass-router.dae;
|
|
};
|
|
}
|