diff --git a/profiles/tor/default.nix b/profiles/tor/default.nix new file mode 100644 index 0000000..06a6f15 --- /dev/null +++ b/profiles/tor/default.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + tor-browser-bundle-bin + ]; + services.tor.enable = true; +} diff --git a/suites/default.nix b/suites/default.nix index c0b6b27..31283f8 100644 --- a/suites/default.nix +++ b/suites/default.nix @@ -2,7 +2,7 @@ { system = with profiles; rec { base = [ users.mae users.root ]; - workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents pwn ]; + workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents pwn tor ]; desktop = workstation ++ [ users.mae-desk amd school three_dee ]; lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager ]; };