From 75f0d7cb15657f2141a7bb2edeb8e81a3d358243 Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Sat, 29 Jun 2024 14:14:33 +0100 Subject: [PATCH] feat(loona): add intellij --- flake.nix | 1 + home/ash/intellij.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 home/ash/intellij.nix 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 + ]; +}