nix-openwrt-imagebuilder/lib/modules/services.nix

11 lines
231 B
Nix

{ lib, ... }:
{
options.services.disabled = with lib; mkOption {
type = with types; listOf str;
default = [ ];
example = [ "dropbear" ];
description = "Which services in /etc/init.d/ should be disabled.";
};
}