feat(vpn): fully replace Mullvad VPN with Tailscale

This commit is contained in:
Felix Schröter 2024-01-06 03:06:53 +01:00
parent 5fe226434d
commit 4c32137982
Signed by: felschr
GPG key ID: 671E39E6744C807D
9 changed files with 28 additions and 88 deletions

View file

@ -103,5 +103,10 @@ in {
schedule-start-hours = 23;
schedule-end-hours = 6;
};
"org/gnome/shell/extensions/tailscale-status" = {
# TODO 0 should disable refresh, but it doesn't work in this version
# refresh-interval = 0;
refresh-interval = 120;
};
};
}

View file

@ -5,7 +5,6 @@ with pkgs; {
./shell
./editors
./desktop
./vpn.nix
./git.nix
./keybase.nix
./element.nix

View file

@ -6,7 +6,6 @@
./editors
./desktop
./desktop/monitors.nix
./vpn.nix
./git.nix
./keybase.nix
./element.nix

View file

@ -1,9 +0,0 @@
{ pkgs, ... }:
with pkgs; {
home.packages = with pkgs; [ mullvad-vpn ];
# autostart
xdg.configFile."autostart/mullvad-vpn.desktop".source =
"${mullvad-vpn}/share/applications/mullvad-vpn.desktop";
}