diff --git a/services/auto-torrent.nix b/services/auto-torrent.nix index 247c9cc..8303e5a 100644 --- a/services/auto-torrent.nix +++ b/services/auto-torrent.nix @@ -101,7 +101,7 @@ in { serviceConfig = { type = "oneshot"; ExecStart = pkgs.writeShellScript "wgconf.sh" '' - ${pkgs.wireguard-tools}/bin/wg-quick up /mnt/de-ber-wg-005.conf + ${pkgs.wireguard-tools}/bin/wg-quick up /mnt/wg.conf ''; RemainAfterExit = "yes"; }; @@ -152,7 +152,11 @@ in { ]; }; - environment.systemPackages = [pkgs.wireguard-tools pkgs.tcpdump]; + environment.systemPackages = with pkgs; [ + wireguard-tools + tcpdump + mullvad + ]; services.openssh = { enable = true;