nixos/java: format with nixfmt-rfc-style

Changed files
+7 -4
nixos
modules
programs
+7 -4
nixos/modules/programs/java.nix
···
# 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;
···
'';
};
-
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";