Skip to content

Commit

Permalink
Remove lib.mdDoc
Browse files Browse the repository at this point in the history
lib.mdDoc is deprecated in NixOS 24.05 and is removed in NixOS 24.11
  • Loading branch information
nbdd0121 authored and wamserma committed Dec 1, 2024
1 parent cb8acb1 commit b4b5ea3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ with lib;
let cfg = config.programs-sqlite;
in {
options.programs-sqlite = {
enable = mkEnableOption (lib.mdDoc "fetching a `programs.sqlite` for `command-not-found`") //
enable = mkEnableOption "fetching a `programs.sqlite` for `command-not-found`" //
{
default = true;
description = lib.mdDoc ''
description = ''
fetch a `programs.sqlite` file matching the current nixpks revision and use it for the
`command-not-found` hook.
'';
Expand All @@ -23,4 +23,4 @@ in {

programs.command-not-found.dbPath = programs-sqlite;
};
})
})

0 comments on commit b4b5ea3

Please sign in to comment.