17 lines
420 B
Nix
17 lines
420 B
Nix
|
{pkgs, ...}: {
|
||
|
xdg.configFile = {
|
||
|
"jupyter/jupyter_server_config.py".source = ./jupyter_server_config.py;
|
||
|
"jupyter/jupyter_nbconvert_config.py".source =
|
||
|
./jupyter_nbconvert_config.py;
|
||
|
};
|
||
|
home.packages = with pkgs; [
|
||
|
(python3.withPackages
|
||
|
(ps:
|
||
|
with ps; [
|
||
|
jupyterlab
|
||
|
jupyterlab-git
|
||
|
(callPackage ./catppuccin_jupyterlab/default.nix {})
|
||
|
]))
|
||
|
];
|
||
|
}
|