1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

Merge pull request #331800 from Guanran928/treewide/remove-periods-from-lib-mkenableoption

treewide: remove periods from lib.mkEnableOption
This commit is contained in:
Lin Jian 2024-08-03 12:53:41 +08:00 committed by GitHub
commit 7b9ef31afd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View file

@ -328,7 +328,7 @@ in
createMailUser = mkEnableOption ''automatically creating the user
given in {option}`services.dovecot.user` and the group
given in {option}`services.dovecot.group`.'' // { default = true; };
given in {option}`services.dovecot.group`'' // { default = true; };
modules = mkOption {
type = types.listOf types.package;

View file

@ -18,9 +18,9 @@ in
meta.maintainers = with lib.maintainers; [ gador ];
options.services.blendfarm = with lib.types; {
enable = lib.mkEnableOption "Blendfarm, a render farm management software for Blender.";
enable = lib.mkEnableOption "Blendfarm, a render farm management software for Blender";
package = lib.mkPackageOption pkgs "blendfarm" { };
openFirewall = lib.mkEnableOption "Allow blendfarm network access through the firewall.";
openFirewall = lib.mkEnableOption "allowing blendfarm network access through the firewall";
user = lib.mkOption {
description = "User under which blendfarm runs.";

View file

@ -88,7 +88,7 @@ in
options = {
services.nagios = {
enable = mkEnableOption ''[Nagios](https://www.nagios.org/) to monitor your system or network.'';
enable = mkEnableOption ''[Nagios](https://www.nagios.org/) to monitor your system or network'';
objectDefs = mkOption {
description = ''

View file

@ -23,14 +23,14 @@ let
};
commonOptions = {
enable = lib.mkEnableOption "this `wstunnel` instance." // {
enable = lib.mkEnableOption "this `wstunnel` instance" // {
default = true;
};
package = lib.mkPackageOption pkgs "wstunnel" { };
autoStart =
lib.mkEnableOption "starting this wstunnel instance automatically." // {
lib.mkEnableOption "starting this wstunnel instance automatically" // {
default = true;
};

View file

@ -19,7 +19,7 @@ in
meta.maintainers = with maintainers; [ etu stunkymonkey mattchrist ];
options.services.freshrss = {
enable = mkEnableOption "FreshRSS RSS aggregator and reader with php-fpm backend.";
enable = mkEnableOption "FreshRSS RSS aggregator and reader with php-fpm backend";
package = mkPackageOption pkgs "freshrss" { };