adding server config to repo. setting up laptop in repo. other changes.

This commit is contained in:
2026-01-31 10:37:44 -06:00
parent 11af2f699f
commit 4d7713173d
13 changed files with 515 additions and 18 deletions

11
hosts/server/jupyter.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
services.jupyter = {
enable = false;
ip = "0.0.0.0";
port = 9002;
password = "'argon2:$argon2id$v=19$m=10240,t=10,p=8$wcvyvCdrrixsD/IUfOij7A$D05SNCsu0gtkCk7V7QSQw3RkcrUfoKXWzn9N/MJjRIA'";
notebookDir = "/var/www/jupyter.lilyanderson.xyz";
notebookConfig = "c.ServerApp.root_dir = '/var/www/jupyter.lilyanderson.xyz'";
};
}