about summary refs log tree commit diff
path: root/nixos/modules/services/desktops/gnome
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2023-02-01 06:12:57 +0100
committerpennae <82953136+pennae@users.noreply.github.com>2023-02-08 15:23:34 +0100
commitbf4c0c19002fc2fa88d64b585497ae5a1c36287f (patch)
tree2e9844faeb1cbfdc3dc4b3b630bee2797a127aa1 /nixos/modules/services/desktops/gnome
parent2f9d71afdb892f399d78d454d3de8188caf259fa (diff)
nixos/*: remove trailing period in mkEnableOptions
those are added by mkEnableOption, and .. is replaced to … by markdown
processing.
Diffstat (limited to 'nixos/modules/services/desktops/gnome')
-rw-r--r--nixos/modules/services/desktops/gnome/evolution-data-server.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/desktops/gnome/evolution-data-server.nix b/nixos/modules/services/desktops/gnome/evolution-data-server.nix
index 0006ba1a7bad5..a8db7dce8fdf2 100644
--- a/nixos/modules/services/desktops/gnome/evolution-data-server.nix
+++ b/nixos/modules/services/desktops/gnome/evolution-data-server.nix
@@ -27,7 +27,7 @@ with lib;
   options = {
 
     services.gnome.evolution-data-server = {
-      enable = mkEnableOption (lib.mdDoc "Evolution Data Server, a collection of services for storing addressbooks and calendars.");
+      enable = mkEnableOption (lib.mdDoc "Evolution Data Server, a collection of services for storing addressbooks and calendars");
       plugins = mkOption {
         type = types.listOf types.package;
         default = [ ];
@@ -35,7 +35,7 @@ with lib;
       };
     };
     programs.evolution = {
-      enable = mkEnableOption (lib.mdDoc "Evolution, a Personal information management application that provides integrated mail, calendaring and address book functionality.");
+      enable = mkEnableOption (lib.mdDoc "Evolution, a Personal information management application that provides integrated mail, calendaring and address book functionality");
       plugins = mkOption {
         type = types.listOf types.package;
         default = [ ];