1
Fork 0
satellite/hosts/nixos/lapetus/services/jupyter.nix

77 lines
1.8 KiB
Nix
Raw Normal View History

2024-05-21 02:12:55 +02:00
{ config, pkgs, ... }:
2024-05-21 02:40:58 +02:00
# {{{ Jupyterhub/lab env
2024-05-21 02:12:55 +02:00
let appEnv = pkgs.python3.withPackages (p: with p; [
jupyterhub
jupyterlab
jupyterhub-systemdspawner
2024-05-21 02:12:55 +02:00
jupyter-collaboration
]);
2024-05-21 02:40:58 +02:00
# }}}
2024-05-21 02:12:55 +02:00
in
{
2024-05-21 01:49:20 +02:00
services.jupyterhub = {
enable = true;
port = 8420;
2024-05-21 02:12:55 +02:00
jupyterhubEnv = appEnv;
jupyterlabEnv = appEnv;
2024-05-21 01:49:20 +02:00
extraConfig = ''
2024-05-21 02:42:49 +02:00
c.LocalAuthenticator.create_system_users = False
2024-05-21 02:40:58 +02:00
c.Authenticator.allowed_users = {'adrielus', 'javi'}
c.Authenticator.admin_users = {'adrielus', 'javi'}
2024-05-21 01:49:20 +02:00
2024-05-21 02:25:58 +02:00
c.Spawner.notebook_dir='${config.users.users.pilot.home}/projects/notebooks'
2024-05-21 01:49:20 +02:00
c.SystemdSpawner.mem_limit = '2G'
c.SystemdSpawner.cpu_limit = 2.0
'';
# {{{ Python 3 kernel
kernels.python3 =
2024-05-21 02:40:58 +02:00
let env = (pkgs.python3.withPackages (p: with p; [
2024-05-21 01:49:20 +02:00
ipykernel
2024-05-21 02:40:58 +02:00
numpy
scipy
2024-05-21 01:49:20 +02:00
]));
in
{
2024-05-21 02:40:58 +02:00
displayName = "Numerical mathematics setup";
2024-05-21 01:49:20 +02:00
argv = [
"${env.interpreter}"
"-m"
"ipykernel_launcher"
"-f"
"{connection_file}"
];
language = "python";
logo32 = "${env}/${env.sitePackages}/ipykernel/resources/logo-32x32.png";
logo64 = "${env}/${env.sitePackages}/ipykernel/resources/logo-64x64.png";
};
# }}}
};
2024-05-21 02:40:58 +02:00
# {{{ Javi user
sops.secrets.javi_password = {
sopsFile = ../secrets.yaml;
neededForUsers = true;
};
2024-05-21 02:42:49 +02:00
users.users.javi = {
isNormalUser = true;
hashedPasswordFile = config.sops.secrets.javi_password.path;
};
2024-05-21 02:40:58 +02:00
# }}}
# {{{ Networking
services.nginx.virtualHosts."jupyter.moonythm.dev" =
config.satellite.proxy
config.services.jupyterhub.port
{ proxyWebsockets = true; };
# }}}
# {{{ Storage
2024-05-21 01:49:20 +02:00
environment.persistence."/persist/state".directories = [
"/var/lib/${config.services.jupyterhub.stateDirectory}"
];
2024-05-21 02:40:58 +02:00
# }}}
2024-05-21 01:49:20 +02:00
}