about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2023-01-05 04:23:29 +0100
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-01-05 13:46:54 +1000
commit3339892da9b4bb31adf67459f9a3e6ef4f113d57 (patch)
tree93da1ca79cf96c19d128410d03f749931cf74352 /nixos
parent431b87041ac7a6809967b7f78fdd8ec28378b6d0 (diff)
nixos/plasma5: use mkPackageOptionMD
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/plasma5.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix
index eb30e601dd009..8270b64787f8f 100644
--- a/nixos/modules/services/x11/desktop-managers/plasma5.nix
+++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix
@@ -32,7 +32,7 @@ let
   inherit (lib)
     getBin optionalString literalExpression
     mkRemovedOptionModule mkRenamedOptionModule
-    mkDefault mkIf mkMerge mkOption mkPackageOption types;
+    mkDefault mkIf mkMerge mkOption mkPackageOptionMD types;
 
   ini = pkgs.formats.ini { };
 
@@ -198,7 +198,7 @@ in
       example = literalExpression "[ pkgs.plasma5Packages.oxygen ]";
     };
 
-    notoPackage = mkPackageOption pkgs "Noto fonts" {
+    notoPackage = mkPackageOptionMD pkgs "Noto fonts" {
       default = [ "noto-fonts" ];
       example = "noto-fonts-lgc-plus";
     };