School: move intellij idea config to it's own file

This commit is contained in:
Toast 2023-10-06 12:13:34 +02:00
parent fd1efa3aec
commit 95c929bdf7
2 changed files with 8 additions and 1 deletions

View file

@ -3,11 +3,11 @@
{ {
imports = [ imports = [
./virtualbox.nix ./virtualbox.nix
./idea.nix
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
dia dia
jetbrains.idea-ultimate
flakeSelf.packages.x86_64-linux.pseint flakeSelf.packages.x86_64-linux.pseint
]; ];
} }

View file

@ -0,0 +1,7 @@
{ config, pkgs, flakeSelf, ... }:
{
environment.systemPackages = with pkgs; with jetbrains; [
idea-ultimate
];
}