dotfiles/modules/editors/idea.nix

11 lines
213 B
Nix
Raw Normal View History

2021-11-28 17:01:32 +01:00
{ config, lib, pkgs, ... }:
2022-03-23 12:41:04 +01:00
let cfg = config.modules.editors;
in {
config = lib.mkIf cfg.idea {
home-manager.users.moritz = {
home.packages = with pkgs; [ jdk jetbrains.idea-ultimate ];
};
2021-11-28 17:01:32 +01:00
};
}