From 79ffd2d2a2e8c574a573668970d2cf1d059a681c Mon Sep 17 00:00:00 2001 From: baritone Date: Tue, 18 Mar 2025 11:19:36 +0100 Subject: [PATCH] g --- services/auto-torrent.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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;