Skip to content

Commit

Permalink
add back package
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Ehlers <[email protected]>
  • Loading branch information
b-m-f committed Dec 23, 2024
1 parent 4d0c460 commit 1d673a5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions nixos/modules/services/development/jupyter/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ let

package = pkgs.python3.withPackages (
ps:
with ps;
[
jupyter
cfg.package
]
++ cfg.extraPackages
);
Expand Down Expand Up @@ -46,6 +45,12 @@ in
'';
};

package = lib.mkPackageOption pkgs [
"python3"
"pkgs"
"jupyter"
] { };

extraPackages = lib.mkOption {
type = lib.types.listOf lib.types.package;
default = [ ];
Expand Down

0 comments on commit 1d673a5

Please sign in to comment.