fix(system): properly configure jupyter
All checks were successful
/ check (push) Successful in 25s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 1s

This commit is contained in:
Jalil David Salamé Messina 2024-10-15 22:32:59 +02:00
parent 3a11187b5a
commit b49f332f34
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 149 additions and 124 deletions

View file

@ -60,7 +60,10 @@ let
dev = lib.mkOption {
description = "Options for setting up a dev environment";
default = { };
type = types.submodule { options.enable = lib.mkEnableOption "dev configuration"; };
type = types.submodule {
options.enable = lib.mkEnableOption "dev configuration";
options.jupyter.enable = lib.mkEnableOption "jupyter configuration";
};
};
gui = lib.mkOption {
description = "Jalil's default configuration for a NixOS gui.";