Add devenv and jetbrains IDE

This commit is contained in:
Laurent Gueret
2026-01-29 12:31:18 +01:00
parent 7dfad1672f
commit 15aba587c3
14 changed files with 255 additions and 3 deletions
@@ -0,0 +1,22 @@
{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.os.ide.jetbrains.idea;
in
{
options.os.ide.jetbrains.idea = {
enable = mkEnableOption "JetBrains options";
};
config = mkIf cfg.enable {
home.packages = with pkgs.unstable; [
jetbrains.idea
];
};
}