mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.bloop;
|
|
|
|
in {
|
|
|
|
options.services.bloop = {
|
|
extraOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
example = [
|
|
"-J-Xmx2G"
|
|
"-J-XX:MaxInlineLevel=20"
|
|
"-J-XX:+UseParallelGC"
|
|
];
|
|
description = ''
|
|
Specifies additional command line argument to pass to bloop
|
|
java process.
|
|
'';
|
|
};
|
|
|
|
install = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to install a user service for the Bloop server.
|
|
|
|
The service must be manually started for each user with
|
|
"systemctl --user start bloop".
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf (cfg.install) {
|
|
systemd.user.services.bloop = {
|
|
description = "Bloop Scala build server";
|
|
|
|
environment = {
|
|
PATH = mkForce "${makeBinPath [ config.programs.java.package ]}";
|
|
};
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.bloop}/bin/bloop server";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.bloop ];
|
|
};
|
|
}
|