mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
38 lines
728 B
Nix
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 ];
|
|
};
|
|
}
|