removed experimental system modules

This commit is contained in:
Bryan Ramos 2024-05-13 16:05:41 -04:00
parent 0d1d7aa28c
commit 7ba9dc50e7
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
19 changed files with 0 additions and 462 deletions

View file

@ -1,23 +0,0 @@
{ lib, config, ... }:
with lib;
let
cfg = config.modules.system.tor;
in
{ options.modules.system.tor = { enable = mkEnableOption "system.tor"; };
config = mkIf cfg.enable {
imports = [ ./modules ];
services.tor = {
enable = true;
client = {
enable = lib.mkDefault true;
dns.enable = mkIf services.tor.client.enable true;
};
relay.enable = lib.mkDefault false;
enableGeoIP = false;
DoSConnectionEnabled = true;
DoSCircuitCreationEnabled = true;
};
};
}