diff --git a/flake.nix b/flake.nix index 1090ffc..5d49436 100644 --- a/flake.nix +++ b/flake.nix @@ -108,6 +108,7 @@ ./home/ash/alex.nix ./home/ash/desktop.nix ./home/ash/emacs.nix + ./home/ash/intellij.nix ./home/ash/vscodium.nix ./home/ash/zoom.nix ]; diff --git a/home/ash/intellij.nix b/home/ash/intellij.nix new file mode 100644 index 0000000..30e5b3f --- /dev/null +++ b/home/ash/intellij.nix @@ -0,0 +1,5 @@ +{ config, pkgs, ... }: { + home.packages = with pkgs; [ + jetbrains.idea-ultimate + ]; +}