summary refs log tree commit diff
path: root/nixos/modules/services/video
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2021-12-06 01:35:38 +0100
committerGitHub <noreply@github.com>2021-12-06 01:35:38 +0100
commit862d167f17953b690f389b8f8f425aa752d18b74 (patch)
treee23a5843235011731578f3c5526582a8ad92a628 /nixos/modules/services/video
parent8ae9ae17b4de60e4b6d59b7de1dca08ce61d8af2 (diff)
parentc694c35f9da13e7008b281d757385e6ad525e22a (diff)
downloadnixpkgs-862d167f17953b690f389b8f8f425aa752d18b74.tar
nixpkgs-862d167f17953b690f389b8f8f425aa752d18b74.tar.gz
nixpkgs-862d167f17953b690f389b8f8f425aa752d18b74.tar.bz2
nixpkgs-862d167f17953b690f389b8f8f425aa752d18b74.tar.lz
nixpkgs-862d167f17953b690f389b8f8f425aa752d18b74.tar.xz
nixpkgs-862d167f17953b690f389b8f8f425aa752d18b74.tar.zst
nixpkgs-862d167f17953b690f389b8f8f425aa752d18b74.zip
Merge pull request #147441 from pennae/option-doc-staticizing
nixos/*: add trivial defaultText to options where applicable
Diffstat (limited to 'nixos/modules/services/video')
-rw-r--r--nixos/modules/services/video/epgstation/default.nix2
-rw-r--r--nixos/modules/services/video/mirakurun.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/video/epgstation/default.nix b/nixos/modules/services/video/epgstation/default.nix
index 36f7b937d5a..56bd9d9eeec 100644
--- a/nixos/modules/services/video/epgstation/default.nix
+++ b/nixos/modules/services/video/epgstation/default.nix
@@ -48,7 +48,7 @@ let
 in
 {
   options.services.epgstation = {
-    enable = mkEnableOption pkgs.epgstation.meta.description;
+    enable = mkEnableOption "EPGStation: DTV Software in Japan";
 
     usePreconfiguredStreaming = mkOption {
       type = types.bool;
diff --git a/nixos/modules/services/video/mirakurun.nix b/nixos/modules/services/video/mirakurun.nix
index 16efb56cfd6..35303b2332c 100644
--- a/nixos/modules/services/video/mirakurun.nix
+++ b/nixos/modules/services/video/mirakurun.nix
@@ -24,7 +24,7 @@ in
   {
     options = {
       services.mirakurun = {
-        enable = mkEnableOption mirakurun.meta.description;
+        enable = mkEnableOption "the Mirakurun DVR Tuner Server";
 
         port = mkOption {
           type = with types; nullOr port;