dotfiles/modules/editors/idea.nix

8 lines
134 B
Nix
Raw Normal View History

2021-11-28 17:01:32 +01:00
{ config, lib, pkgs, ... }:
{
2021-11-29 11:55:15 +01:00
home-manager.users.moritz = {
home.packages = with pkgs; [ jdk jetbrains.idea-ultimate ];
2021-11-28 17:01:32 +01:00
};
}