mirror of
https://github.com/allaunthefox/SilverSight.git
synced 2026-08-09 04:15:47 +00:00
Snapshot of previously-uncommitted local work so nothing is lost after the power outage. NOT reviewed for correctness — a WIP checkpoint, not a feature: - multi-language hachimoji encoders (c/cpp/fortran/julia/octave/r/scala/go/rust/coq) - formal Lean WIP (BraidTree, Eisenstein, HachimojiCapture, MathlibConnect, ModularFormBridge, ClusterManifold) + lakefile + E8Sidon edit - docs/, experiments/ (epyc oisc benches), deploy/, scripts, test scaffolding - .gitignore: exclude **/target/ and Coq build artifacts Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| configuration.nix | ||
| flake.nix | ||
| README.md | ||
| setup.sh | ||
netcup RS 1000 G12 — NixOS First Boot
Step 1: Console Access
Open the SCP web console (Screen tab → Open Console). Log in as allaun with password Silverkitten14. If allaun doesn't exist, use root with sudo -i.
Step 2: Find interface, enable SSH
Run these commands:
# Check network interface name
ip link
# Enable SSH with password auth
cat >> /etc/nixos/configuration.nix << 'EOF'
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
PermitRootLogin = "prohibit-password";
};
};
users.users.allaun.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDrWDlPkRTdPvx5RfWBTDYF6FNJgOLf6tS3PAgQDgMHb allaun@qfox-1"
];
system.stateVersion = "24.11";
EOF
# Apply
nixos-rebuild switch --upgrade
Step 3: Connect from your machine
ssh allaun@159.195.136.129
Step 4: Deploy full config
Once SSH works, clone the repo and deploy the full flake:
git clone https://github.com/allaunthefox/SilverSight /home/allaun/SilverSight
cd /home/allaun/SilverSight/deploy/netcup-rs1000
sudo nixos-rebuild switch --flake .