mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
github-runner: remove with lib;
This commit is contained in:
parent
55d07816a0
commit
d8255f09da
2 changed files with 8 additions and 2 deletions
|
@ -3,7 +3,9 @@
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with lib;
|
let
|
||||||
|
inherit (lib) literalExpression mkOption mkPackageOption types;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
options.services.github-runners = mkOption {
|
options.services.github-runners = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
with lib;
|
|
||||||
let
|
let
|
||||||
|
inherit (lib) any attrValues boolToString concatStringsSep escapeShellArg
|
||||||
|
flatten flip getExe hasAttr hasPrefix mapAttrsToList mapAttrs' mkBefore
|
||||||
|
mkDefault mkIf mkMerge nameValuePair optionalAttrs optionalString replaceStrings;
|
||||||
|
|
||||||
mkSvcName = name: "github-runner-${name}";
|
mkSvcName = name: "github-runner-${name}";
|
||||||
mkStateDir = cfg: "/var/lib/github-runners/${cfg.name}";
|
mkStateDir = cfg: "/var/lib/github-runners/${cfg.name}";
|
||||||
mkLogDir = cfg: "/var/log/github-runners/${cfg.name}";
|
mkLogDir = cfg: "/var/log/github-runners/${cfg.name}";
|
||||||
|
|
Loading…
Reference in a new issue