new type for interface (presently just alias to service)

module-based-network
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 = {
types =
let inherit (lib) types isDerivation;
in {
in rec {
service = types.package // {
name = "service";
description = "s6-rc service";
check = x: isDerivation x && x ? serviceType;
};
interface = service;
serviceDefn = types.attrs // {
name = "service-defn";
description = "parametrisable s6-rc service definition";