diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-24 10:53:41 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-24 10:53:41 -0600 |
| commit | 7a05f6634f2a8fd3340330eb6dc7d4b1890e8247 (patch) | |
| tree | fbfc8653c788ba333de1fc06260b489897b967f2 /hosts/mercury | |
| parent | bede17058b1fa89773eeb81d1c260a40d1cdfa93 (diff) | |
ssh config
Diffstat (limited to 'hosts/mercury')
| -rw-r--r-- | hosts/mercury/nixos.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix index 8052bb1..d0ea0fa 100644 --- a/hosts/mercury/nixos.nix +++ b/hosts/mercury/nixos.nix @@ -24,15 +24,19 @@ environment.defaultPackages = lib.mkForce []; # im not a noob - # programs.firefox.policies.Preferences.ExtensionSettings = { - - # }; + programs.firefox.policies.ExtensionSettings = { + "foxyproxy@eric.h.jung" = { + installation_mode = "force_installed"; + install_url = "https://addons.mozilla.org/firefox/downloads/latest/foxyproxy-standard/latest.xpi"; + }; + }; programs.ssh.extraConfig = '' Host ganymede - HostName 70.130.121.193 + HostName williamsfam.us.com User collin IdentityFile /home/collin/.ssh/id_ed25519 - LocalForward 8015 127.0.0.1:8015 + LocalForward 8010 127.0.0.1:8010 + DynamicForward 9090 ''; } |
