about summary refs log tree commit diff
path: root/nixos/modules/programs/iay.nix
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2023-01-05 20:20:23 +0100
committerGitHub <noreply@github.com>2023-01-05 20:20:23 +0100
commit37d8b66e6acc039dd5d5504aa1fdf0f2847444c5 (patch)
treefe1efb7a0afeed7037db96725e070768bb01bbb6 /nixos/modules/programs/iay.nix
parentc6d041d2cb6a392ce70f5e9414816c074069328c (diff)
parent8822e9620cb2da9681613620fa7c61535e3114d6 (diff)
Merge pull request #209199 from ncfavier/fix-iay
Diffstat (limited to 'nixos/modules/programs/iay.nix')
-rw-r--r--nixos/modules/programs/iay.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/programs/iay.nix b/nixos/modules/programs/iay.nix
index 1fa00e43795ad..9164f5cb64862 100644
--- a/nixos/modules/programs/iay.nix
+++ b/nixos/modules/programs/iay.nix
@@ -2,11 +2,11 @@
 
 let
   cfg = config.programs.iay;
-  inherit (lib) mkEnableOption mkIf mkOption mkPackageOption optionalString types;
+  inherit (lib) mkEnableOption mkIf mkOption mkPackageOptionMD optionalString types;
 in {
   options.programs.iay = {
     enable = mkEnableOption (lib.mdDoc "iay");
-    package = mkPackageOption pkgs "iay" {};
+    package = mkPackageOptionMD pkgs "iay" {};
 
     minimalPrompt = mkOption {
       type = types.bool;