diff options
| author | adikro <adikro@disroot.org> | 2026-04-04 15:19:42 +0200 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-04-04 15:19:42 +0200 |
| commit | 156b4f2c45321bd6cbb63097105c31baa955bfc6 (patch) | |
| tree | cc639e5a8f3e2859db46f41c28747bb162f7a4ba /os/srv/tor.nix | |
| parent | 4ff17027412da68da76a988f3d4d6d633e2ebb91 (diff) | |
moving away from home manager
Diffstat (limited to 'os/srv/tor.nix')
| -rw-r--r-- | os/srv/tor.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/os/srv/tor.nix b/os/srv/tor.nix new file mode 100644 index 0000000..a33f486 --- /dev/null +++ b/os/srv/tor.nix @@ -0,0 +1,15 @@ +{ + config, + lib, + ... +}: +let + cfg = config.os.srv.tor; +in +{ + options.os.srv.tor.enable = lib.mkEnableOption "enables tor services and browser"; + + config = lib.mkIf cfg.enable { + + }; +} |
