1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/java.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-02 11:14:10 +02:00
# This module provides JAVA_HOME, with a different way to install java locally.
# This module is modified from the NixOS module `programs.java`
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.java;
in {
meta.maintainers = with maintainers; [ ShamrockLee ];
options = {
programs.java = {
enable = mkEnableOption "" // {
description = ''
Install the Java development kit and set the
{env}`JAVA_HOME` variable.
2021-08-02 11:14:10 +02:00
'';
};
package = mkOption {
type = types.package;
default = pkgs.jdk;
defaultText = "pkgs.jdk";
description = ''
2021-08-02 11:14:10 +02:00
Java package to install. Typical values are
`pkgs.jdk` or `pkgs.jre`.
2021-08-02 11:14:10 +02:00
'';
};
};
};
config = mkIf cfg.enable {
home.packages = [ cfg.package ];
# some instances of `jdk-linux-base.nix` pass through `result` without turning it onto a path-string.
# while I suspect this is incorrect, the documentation is unclear.
home.sessionVariables.JAVA_HOME = "${cfg.package.home}";
2021-08-02 11:14:10 +02:00
};
}