20 Nov 2021 |
| nykw joined the room. | 11:08:49 |
23 Nov 2021 |
| Server Stats Discoverer (traveler bot) left the room. | 03:10:23 |
25 Nov 2021 |
| betaboon joined the room. | 13:26:43 |
27 Nov 2021 |
| Alok Parlikar left the room. | 16:06:05 |
3 Dec 2021 |
| Patryk Gronkiewicz joined the room. | 12:59:01 |
10 Dec 2021 |
| linj joined the room. | 00:53:12 |
11 Dec 2021 |
| nbathum (he or they) joined the room. | 19:23:02 |
12 Dec 2021 |
| linj left the room. | 21:44:14 |
13 Dec 2021 |
| uran238 joined the room. | 20:59:34 |
16 Dec 2021 |
| trexd joined the room. | 05:14:19 |
| trexd left the room. | 05:16:18 |
23 Dec 2021 |
| Gaétan Lepage joined the room. | 14:32:11 |
26 Dec 2021 |
| arba changed their display name from teuffil to Christophe. | 02:06:57 |
| arba changed their display name from Christophe to Chrstph. | 02:08:42 |
| arba changed their display name from Chrstph to chrstph. | 02:09:09 |
| arba changed their display name from chrstph to arba. | 02:13:22 |
31 Dec 2021 |
| mexisme joined the room. | 23:12:21 |
2 Jan 2022 |
| arba left the room. | 07:09:05 |
4 Jan 2022 |
| net-mist joined the room. | 16:25:33 |
11 Jan 2022 |
jbedo | if there's an rstudio-server user here and has time to test an rstudio-server module we could use some help testing a PR: https://github.com/NixOS/nixpkgs/pull/95831 | 09:22:54 |
jbedo | * if there's an rstudio-server user here who has time to test an rstudio-server module we could use some help testing a PR: https://github.com/NixOS/nixpkgs/pull/95831 | 09:24:08 |
| andrew joined the room. | 18:41:44 |
19 Jan 2022 |
| Baughn joined the room. | 20:33:36 |
27 Jan 2022 |
| Jonathan Reeve joined the room. | 20:35:07 |
Jonathan Reeve | Hi everyone! Has anyone managed to get JupyterWith working with a flake.nix system config? | 20:36:49 |
Jonathan Reeve | Here's what I've tried:
{
description = "My NixOS configuration.";
inputs = {
nixos.url = "nixpkgs/nixos-unstable";
jupyterWith.url = "github:tweag/jupyterWith";
};
outputs = { self, nixos, jupyterWith}: {
nixosConfigurations.jon-laptop = nixos.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix
jupyterWith.jupyterlabWith { kernels = [
(jupyterWith.kernels.iPythonWith {
name = "python";
packages = p: with p; [ pandas ];
})
(jupyterWith.kernels.iRWith {
name = "R";
packages = p: with p; [ ggplot2 ];
})
]; }
}
];
};
};
}
| 20:38:11 |
Jonathan Reeve | But I have a feeling I'm doing something wrong there. | 20:38:21 |
Jonathan Reeve | * Here's what I've tried:
{
description = "My NixOS configuration.";
inputs = {
nixos.url = "nixpkgs/nixos-unstable";
jupyterWith.url = "github:tweag/jupyterWith";
};
outputs = { self, nixos, jupyterWith}: {
nixosConfigurations.jon-laptop = nixos.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix
jupyterWith.jupyterlabWith { kernels = [
(jupyterWith.kernels.iPythonWith {
name = "python";
packages = p: with p; [ pandas ];
})
(jupyterWith.kernels.iRWith {
name = "R";
packages = p: with p; [ ggplot2 ];
})
]; }
}
];
};
};
}
| 20:38:37 |
Jonathan Reeve | Since the error I'm getting is:
error: attribute 'jupyterlabWith' missing
at /nix/store/8k2f8i93457v7rmfh2pdvsk0qw922laz-source/dotfiles/flake.nix:19:20:
18| modules = [ ./configuration.nix
19| jupyterWith.jupyterlabWith { kernels = [
| ^
20| (jupyterWith.kernels.iPythonWith {
(use '--show-trace' to show detailed location information)
| 20:39:09 |
jbedo | not a jupyter user, but the flake seems to output jupyterEnvironment not jupyterlabWith:
❯ nix search github:tweag/jupyterWith
* packages.x86_64-linux.jupyterEnvironment (3.2.3)
Jupyter lab environment notebook server extension.
| 20:43:28 |