Install java
This commit is contained in:
parent
a87e74705b
commit
1597e35b94
2 changed files with 8 additions and 1 deletions
7
profiles/java/default.nix
Normal file
7
profiles/java/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.java.enable = true;
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
jdk
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
{ profiles, ... }:
|
{ profiles, ... }:
|
||||||
with profiles; rec {
|
with profiles; rec {
|
||||||
base = [ users.root core dnscrypt ];
|
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 ];
|
desktop = workstation ++ [ users.mae-desk amd three_dee androidev ];
|
||||||
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager androidev ];
|
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager androidev ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue