nixos-config/modules/dev/java.nix
christiangabrielarazas@gmail.com 19674fe7d2 Update the modules
2020-08-06 23:35:49 +08:00

21 lines
477 B
Nix

# Java is a rice variant, a coffee blend, an island, and a programming language.
# It sure is a flexible thing.
{ config, options, lib, pkgs, ... }:
with lib;
{
options.modules.dev.java = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf config.modules.dev.java.enable {
home.packages = [
jdk # The Java Development Kit.
jre # The Java Runtime Environment for running Java apps.
];
};
}