bloop: init at 1.0.0-M11
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user