nixpkgs/nixos/modules/services/development/bloop.nix
2018-06-23 18:25:44 +02:00

38 lines
728 B
Nix

{ 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 ];
};
}