This commit is contained in:
4DBug
2026-03-23 08:34:37 -05:00
parent 2ab5eff599
commit cc96e7d20e
5 changed files with 55 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ inputs, ... }: {
den.aspects.omnisearch = {
nixos = {
imports = [ inputs.omnisearch.nixosModules.default ];
den.tunnels = [ "omnisearch" ];
services.omnisearch.enable = true;
};
};
}

View File

@@ -15,6 +15,7 @@
git = 3002;
monitor = 61208;
matrix = 8008;
omnisearch = 5000;
};
};
}

View File

@@ -9,6 +9,8 @@
rebox = "sh -c 'fuser -k \"$1\"/tcp' --";
dock = "sh -c 'ssh -N -D \"$1\" box.bug.tools &' --";
vpn = "sshuttle --dns --python python3 -r box.bug.tools 0/0";
pico = "ssh pico.sh";
ns = "nh os switch ~/nix --impure -H (hostname)";

View File

@@ -2,7 +2,7 @@
den.aspects.sshuttle = {
nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
python
python3
sshuttle
];
};