nixos/preload: init
[NixPkgs.git] / nixos / modules / services / development / bloop.nix
blob27da76a744320128af9945328530139956902878
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
7   cfg = config.services.bloop;
9 in {
11   options.services.bloop = {
12     extraOptions = mkOption {
13       type = types.listOf types.str;
14       default = [ ];
15       example = [
16         "-J-Xmx2G"
17         "-J-XX:MaxInlineLevel=20"
18         "-J-XX:+UseParallelGC"
19       ];
20       description = lib.mdDoc ''
21         Specifies additional command line argument to pass to bloop
22         java process.
23       '';
24     };
26     install = mkOption {
27       type = types.bool;
28       default = false;
29       description = lib.mdDoc ''
30         Whether to install a user service for the Bloop server.
32         The service must be manually started for each user with
33         "systemctl --user start bloop".
34       '';
35     };
36   };
38   config = mkIf (cfg.install) {
39     systemd.user.services.bloop = {
40       description = "Bloop Scala build server";
42       environment = {
43         PATH = mkForce "${makeBinPath [ config.programs.java.package ]}";
44       };
45       serviceConfig = {
46         Type        = "simple";
47         ExecStart   = "${pkgs.bloop}/bin/bloop server";
48         Restart     = "always";
49       };
50     };
52     environment.systemPackages = [ pkgs.bloop ];
53   };