diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-26 11:48:44 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-26 11:48:44 -0600 |
| commit | 07c023cb185e7c49a04246a686dd2a560bb0d55f (patch) | |
| tree | 7566eda3dc43cbb3ec8c97ed996cc75b436fec82 /hosts | |
| parent | af9357c2652605185214fb52a09c9472498d2a74 (diff) | |
btopweb
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/ganymede/config.nix | 4 | ||||
| -rw-r--r-- | hosts/mercury/nixos.nix | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix index 8347e5a..db684ae 100644 --- a/hosts/ganymede/config.nix +++ b/hosts/ganymede/config.nix @@ -65,6 +65,10 @@ enable = true; privateUrl = "stats.ganymede"; }; + btopweb = { + enable = true; + privateUrl = "btop.ganymede"; + }; cgit = { enable = true; diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix index 7884f20..f820b7f 100644 --- a/hosts/mercury/nixos.nix +++ b/hosts/mercury/nixos.nix @@ -1,5 +1,6 @@ { lib, + pkgs, inputs, ... }: { @@ -20,6 +21,15 @@ dataDir = "/home/collin/.local/syncthing"; }; + services.autossh.sessions = [ + { + name = "ganymede"; + user = "collin"; + monitoringPort = 20000; + extraArguments = "-N -D 9090 collin@williamsfam.us.com"; + } + ]; + security.soteria.enable = true; services.printing.enable = true; |
