0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

nixos/github-runners: fix format of service file

This commit is contained in:
Vincent Haupert 2023-01-09 09:36:51 +01:00
parent 66dbf9b199
commit b634dbe576

View file

@ -45,7 +45,8 @@ in
config.nix.package
] ++ cfg.extraPackages;
serviceConfig = mkMerge [{
serviceConfig = mkMerge [
{
ExecStart = "${cfg.package}/bin/Runner.Listener run --startuptype service";
# Does the following, sequentially:
@ -262,5 +263,6 @@ in
DynamicUser = mkDefault true;
}
(mkIf (cfg.user != null) { User = cfg.user; })
cfg.serviceOverrides];
cfg.serviceOverrides
];
}