Fix boot, add java+node, fix backlight

This commit is contained in:
Alexander
2025-08-08 01:35:01 +02:00
parent bce5674b84
commit 63f3c1f2d1
7 changed files with 74 additions and 6 deletions
@@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.dov.development.jetbrains;
in {
options.dov.development.jetbrains = {
toolbox.enable = mkEnableOption "toolbox config";
};
config = {
home.packages = [] ++ optionals cfg.toolbox.enable [ pkgs.jetbrains-toolbox ];
};
}