refactor: Deprecate NixOs module

This commit is contained in:
lelgenio 2024-12-09 12:14:55 -03:00
parent 995dd52adc
commit dae45d19c1
2 changed files with 28 additions and 25 deletions

View file

@ -22,7 +22,11 @@
nixosModules = rec {
default = dzgui;
dzgui = import ./module.nix;
dzgui = pkgs.lib.warn (
"The dzgui NixOs module is deprecated and will be removed in the future, "
+ "check https://github.com/lelgenio/dzgui-nix/blob/main/README.md "
+ "for instructions on how to install dzgui as a regular package"
) (import ./module.nix);
};
devShells.${system}.default = pkgs.mkShell {