diff --git a/nixos/modules/phoebus/client.nix b/nixos/modules/phoebus/client.nix index c333d55..74a4324 100644 --- a/nixos/modules/phoebus/client.nix +++ b/nixos/modules/phoebus/client.nix @@ -8,7 +8,7 @@ pkg = pkgs.epnix.phoebus.override {java_opts = cfg.java_opts;}; in { options.programs.phoebus-client = { - enable = lib.mkEnableOption ''installing and configuring the Phoebus client''; + enable = lib.mkEnableOption "installing and configuring the Phoebus client"; java_opts = lib.mkOption { type = lib.types.str; default = "-XX:MinHeapSize=128m -XX:MaxHeapSize=4g -XX:InitialHeapSize=1g -XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5 -XX:-ShrinkHeapInSteps -XX:NativeMemoryTracking=detail"; diff --git a/pkgs/epnix/tools/phoebus/client/default.nix b/pkgs/epnix/tools/phoebus/client/default.nix index 95a08ef..817e59d 100644 --- a/pkgs/epnix/tools/phoebus/client/default.nix +++ b/pkgs/epnix/tools/phoebus/client/default.nix @@ -46,7 +46,5 @@ stdenv.mkDerivation { }) ]; - meta = { - inherit (epnix.phoebus-unwrapped) meta; - }; + inherit (epnix.phoebus-unwrapped) meta; }