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 9f0a1fa..31283f8 100644 --- a/suites/default.nix +++ b/suites/default.nix @@ -1,10 +1,10 @@ { users, profiles, userProfiles, ... }: { system = with profiles; rec { - base = [ users.root ]; - workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn ]; + base = [ users.mae users.root ]; + 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 hosts_block ]; + lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager ]; }; user = with userProfiles; rec { base = [ direnv git ];