diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-04-17 08:35:28 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-04-17 08:35:28 +0200 |
| commit | a277e2b64027d08aafc0899bdc580a7830e4cdef (patch) | |
| tree | f2f49542e92f072a06ecf9159a3d1174fea44177 /common | |
| parent | edb91700b7ce4dde94588ec94297ecd7a3c159a8 (diff) | |
add: tor
Diffstat (limited to 'common')
| -rw-r--r-- | common/services/default.nix | 1 | ||||
| -rw-r--r-- | common/services/tor.nix | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/common/services/default.nix b/common/services/default.nix index 81b9554..c65c86f 100644 --- a/common/services/default.nix +++ b/common/services/default.nix @@ -3,6 +3,7 @@ let services = [ "pipewire" "greetd" + "tor" ]; in builtins.listToAttrs ( diff --git a/common/services/tor.nix b/common/services/tor.nix new file mode 100644 index 0000000..a8321f2 --- /dev/null +++ b/common/services/tor.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + enable = true; +} |