Compare commits

..

No commits in common. "69ae27e713f89577130bb2007a48f3a6fb31835e" and "feec9e898e3e0bebe8772ac375628039716bb3f5" have entirely different histories.

3 changed files with 2 additions and 17 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

@ -1,12 +0,0 @@
{ config, pkgs, ... }:
{
programs.java = {
enable = true;
package = pkgs.jdk8;
};
environment.systemPackages = with pkgs; with jetbrains; [
idea-ultimate
];
}

View file

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