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

@ -1,14 +1,13 @@
{ inputs, lib, ... }:
{
# Example vm configuration
flake.nixosConfigurations.vm =
let
let
system = "x86_64-linux";
overlays = builtins.attrValues inputs.self.overlays;
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam-original" ];
pkgs = import inputs.nixpkgs { inherit system overlays config; };
in
lib.nixosSystem {
in
{
# Example vm configuration
flake.nixosConfigurations.vm = lib.nixosSystem {
inherit system pkgs;
modules = [
inputs.self.nixosModules.vm # import vm module
@ -32,15 +31,25 @@
jhome = {
enable = true;
gui.enable = true;
dev.rust.enable = true;
dev = {
enable = true;
rust.enable = true;
};
};
};
nix.registry.nixpkgs.flake = inputs.nixpkgs;
# password is 'test' see module documentation for more options
services.jupyter.password = "'sha1:1b961dc713fb:88483270a63e57d18d43cf337e629539de1436ba'";
jconfig = {
enable = true;
dev = {
enable = true;
jupyter.enable = true;
};
gui.enable = true;
};
}
];
};
}

View file

@ -26,8 +26,12 @@ in
{ stylix = import ./stylix-config.nix { inherit config pkgs; }; }
];
config = lib.mkIf cfg.enable {
boot.plymouth.enable = cfg.styling.enable;
config = lib.mkIf cfg.enable (
lib.mkMerge [
{
boot.plymouth = {
inherit (cfg.styling) enable;
};
# Enable unlocking the gpg-agent at boot (configured through home.nix)
security.pam.services.login.gnupg.enable = true;
@ -47,12 +51,14 @@ in
];
# Enable dev documentation
documentation.dev.enable = cfg.dev.enable;
documentation.dev = {
inherit (cfg.dev) enable;
};
programs = {
# Shell prompt
starship = {
enable = true;
settings = lib.mkIf cfg.styling.enable {
settings = {
format = "$time$all";
add_newline = false;
cmd_duration.min_time = 500;
@ -84,10 +90,6 @@ in
openssh.authorizedKeysFiles = builtins.map (path: "/etc/${path}") (
builtins.attrNames keysFromGithub
);
jupyter = {
inherit (cfg.dev) enable;
group = "users";
};
};
users.defaultUserShell = pkgs.zsh;
# Open ports for spotifyd
@ -113,5 +115,16 @@ in
];
};
};
}
# dev configuration
(lib.mkIf cfg.dev.enable {
users.extraUsers = lib.mkIf cfg.dev.jupyter.enable { jupyter.group = "jupyter"; };
services.jupyter = {
inherit (cfg.dev.jupyter) enable;
group = "jupyter";
user = "jupyter";
};
})
]
);
}

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.";