new type for interface (presently just alias to service)

This commit is contained in:
Daniel Barlow 2023-08-23 20:28:49 +01:00
parent 2ad203ce1f
commit 81b56fb6a3
1 changed files with 2 additions and 1 deletions

View File

@ -28,12 +28,13 @@ in {
lib = { lib = {
types = types =
let inherit (lib) types isDerivation; let inherit (lib) types isDerivation;
in { in rec {
service = types.package // { service = types.package // {
name = "service"; name = "service";
description = "s6-rc service"; description = "s6-rc service";
check = x: isDerivation x && x ? serviceType; check = x: isDerivation x && x ? serviceType;
}; };
interface = service;
serviceDefn = types.attrs // { serviceDefn = types.attrs // {
name = "service-defn"; name = "service-defn";
description = "parametrisable s6-rc service definition"; description = "parametrisable s6-rc service definition";