Compare commits

...

4 commits

3 changed files with 17 additions and 2 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,12 @@
{ config, pkgs, ... }:
{
programs.java = {
enable = true;
package = pkgs.jdk8;
};
environment.systemPackages = with pkgs; with jetbrains; [
idea-ultimate
];
}

View file

@ -26,5 +26,8 @@
}) })
''; '';
environment.systemPackages = [ pkgs.mysql-workbench ]; environment.systemPackages = with pkgs; [
mysql-workbench
mycli
];
} }