diff --git a/modules/system/services/memos.nix b/modules/system/services/memos.nix index 26864a3..b978616 100644 --- a/modules/system/services/memos.nix +++ b/modules/system/services/memos.nix @@ -26,7 +26,9 @@ in }; config = lib.mkIf cfg.enable { - warnings = lib.optional (lib.pathExists "${modulesPath}/services/misc/memos.nix") "TODO: Use memos module from stable nixpkgs"; + warnings = + lib.optional (lib.pathExists "${modulesPath}/services/misc/memos.nix") "TODO: Use memos module from stable nixpkgs" + ++ lib.optional (lib.versionAtLeast lib.version "25.11") "TODO: Use memos package from stable nixpkgs"; meta = { domains.list = [ cfg.domain ];