Sakooooo
c3f4f06054
the voices are back the voices are back the voices are back the voices are back the voices are back the voices are back the voices are back the voices are back the voices are back the voices are back the voices are back the voices are back
14 lines
318 B
Nix
14 lines
318 B
Nix
{ outputs, options, config, lib, pkgs, ... }:
|
|
let cfg = config.modules.security.tor;
|
|
in {
|
|
options.modules.security.tor = { enable = lib.mkEnableOption false; };
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.tor = {
|
|
enable = true;
|
|
torsocks.enable = true;
|
|
client = { enable = true; };
|
|
};
|
|
};
|
|
}
|