Commit 5bb480bf authored by Tomodachi94's avatar Tomodachi94
Browse files

nixos/java: format with nixfmt-rfc-style

parent 8ccdb34f
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
# This module provides JAVA_HOME, with a different way to install java
# system-wide.

{ config, lib, pkgs, ... }:
{
  config,
  lib,
  pkgs,
  ...
}:

let
  cfg = config.programs.java;
@@ -28,9 +33,7 @@ in
        '';
      };

      package = lib.mkPackageOption pkgs "jdk" {
        example = "jre";
      };
      package = lib.mkPackageOption pkgs "jdk" { example = "jre"; };

      binfmt = lib.mkEnableOption "binfmt to execute java jar's and classes";