Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

59 lines
1.2 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.bloop;
in
{
options.services.bloop = {
extraOptions = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
example = [
"-J-Xmx2G"
"-J-XX:MaxInlineLevel=20"
"-J-XX:+UseParallelGC"
];
description = ''
Specifies additional command line argument to pass to bloop
java process.
'';
};
install = lib.mkOption {
type = lib.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 = lib.mkIf (cfg.install) {
systemd.user.services.bloop = {
description = "Bloop Scala build server";
environment = {
PATH = lib.mkForce "${lib.makeBinPath [ config.programs.java.package ]}";
};
serviceConfig = {
Type = "forking";
ExecStart = "${pkgs.bloop}/bin/bloop start";
ExecStop = "${pkgs.bloop}/bin/bloop exit";
Restart = "always";
};
};
environment.systemPackages = [ pkgs.bloop ];
};
}