Install java

This commit is contained in:
Bad 2021-08-23 14:40:31 +02:00
parent a87e74705b
commit 1597e35b94
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.java.enable = true;
environment.systemPackages = with pkgs; [
jdk
];
}

View file

@ -1,7 +1,7 @@
{ profiles, ... }:
with profiles; rec {
base = [ users.root core dnscrypt ];
workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn tor rust virtualization ];
workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn tor rust virtualization java ];
desktop = workstation ++ [ users.mae-desk amd three_dee androidev ];
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager androidev ];
}