From 199cf340127657faf97e6b86705fea5c356adaf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Milojevi=C4=87?= Date: Mon, 22 Jul 2024 13:37:17 +0200 Subject: [PATCH] chore: removing deprecations for 25.05 nix --- modules/services/jankyborders/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/jankyborders/default.nix b/modules/services/jankyborders/default.nix index 11b954ea..92ec1a1f 100644 --- a/modules/services/jankyborders/default.nix +++ b/modules/services/jankyborders/default.nix @@ -4,7 +4,7 @@ pkgs, ... }: let - inherit (lib) maintainers mkEnableOption mkIf mkPackageOptionMD mkOption types; + inherit (lib) maintainers mkEnableOption mkIf mkPackageOption mkOption types; cfg = config.services.jankyborders; joinStrings = strings: builtins.concatStringsSep "," strings; @@ -24,7 +24,7 @@ in { options.services.jankyborders = { enable = mkEnableOption "Enable the jankyborders service."; - package = mkPackageOptionMD pkgs "jankyborders" {}; + package = mkPackageOption pkgs "jankyborders" {}; width = mkOption { type = types.float;