mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 11:41:59 -05:00
15 lines
212 B
Nix
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;
|
|
};
|
|
};
|
|
}
|