bloop: init at 1.0.0-M11

This commit is contained in:
Kevin Rauscher
2018-06-23 18:25:44 +02:00
parent d8bb4c3ffa
commit ead58d100d
4 changed files with 101 additions and 0 deletions
@@ -0,0 +1,37 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.bloop;
in {
options.services.bloop = {
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";
serviceConfig = {
Type = "simple";
ExecStart = ''${pkgs.bloop}/bin/blp-server'';
Restart = "always";
};
};
environment.systemPackages = [ pkgs.bloop ];
};
}