nixpkgs/nixos/modules/services/development/bloop.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.1 KiB
Nix
Raw Normal View History

2018-06-03 19:48:05 +00:00
{ 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.
'';
};
2018-06-03 19:48:05 +00:00
install = mkOption {
type = types.bool;
default = false;
description = ''
2018-06-03 19:48:05 +00:00
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 ]}";
};
2018-06-03 19:48:05 +00:00
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.bloop}/bin/bloop server";
Restart = "always";
2018-06-03 19:48:05 +00:00
};
};
environment.systemPackages = [ pkgs.bloop ];
};
}