mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
12 lines
325 B
Nix
12 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.
|
|
'')
|
|
];
|
|
}
|