feat(loona): add intellij

This commit is contained in:
Ashhhleyyy 2024-06-29 14:14:33 +01:00
parent 30cf290b72
commit 75f0d7cb15
Signed by: ash
GPG key ID: 83B789081A0878FB
2 changed files with 6 additions and 0 deletions

View file

@ -108,6 +108,7 @@
./home/ash/alex.nix ./home/ash/alex.nix
./home/ash/desktop.nix ./home/ash/desktop.nix
./home/ash/emacs.nix ./home/ash/emacs.nix
./home/ash/intellij.nix
./home/ash/vscodium.nix ./home/ash/vscodium.nix
./home/ash/zoom.nix ./home/ash/zoom.nix
]; ];

5
home/ash/intellij.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }: {
home.packages = with pkgs; [
jetbrains.idea-ultimate
];
}