Files
DCGOS/modules/services/daed.nix
2025-07-22 12:18:15 +08:00

15 lines
212 B
Nix

{
hostname,
lib,
...
}:
with lib; let
inherit (import ../../hosts/${hostname}/env.nix) Transparent-Proxy;
in {
config = mkIf Transparent-Proxy {
services.daed = {
enable = true;
};
};
}