bloop: get closer to standard bloop packaging

This commit is contained in:
Kevin Rauscher
2019-07-24 21:42:40 +02:00
parent 3bdd3b158a
commit d6b6015d34
2 changed files with 31 additions and 29 deletions
+6 -3
View File
@@ -25,10 +25,13 @@ in {
systemd.user.services.bloop = {
description = "Bloop Scala build server";
environment = {
PATH = mkForce "${makeBinPath [ config.programs.java.package ]}";
};
serviceConfig = {
Type = "simple";
ExecStart = ''${pkgs.bloop}/bin/blp-server'';
Restart = "always";
Type = "simple";
ExecStart = ''${pkgs.bloop}/bin/bloop server'';
Restart = "always";
};
};