mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 22:55:58 +01:00
11 lines
325 B
Nix
11 lines
325 B
Nix
{lib, ...}: let
|
|
inherit (lib.modules) mkRemovedOptionModule;
|
|
in {
|
|
imports = [
|
|
# 2024-06-06
|
|
(mkRemovedOptionModule ["vim" "tidal"] ''
|
|
Tidalcycles language support has been removed as of 2024-06-06 as it was long unmaintained. If
|
|
you depended on this functionality, please open an issue.
|
|
'')
|
|
];
|
|
}
|