diff --git a/system/home/scripts/default.nix b/system/home/scripts/default.nix index 08704745..c13782e8 100644 --- a/system/home/scripts/default.nix +++ b/system/home/scripts/default.nix @@ -7,5 +7,9 @@ (pkgs.writeShellScriptBin "rsync-local-config" (builtins.readFile ./shell/rsync-local-config.sh)) (pkgs.writeShellScriptBin "xdg-query-program" (builtins.readFile ./shell/xdg-query-program.sh)) ]; + shellAliases = { + protonup = "sudo wg-quick up protonvpn && sudo wg"; + protondown = "sudo wg-quick down protonvpn"; + }; }; }