1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-14 13:01:09 +01:00

home-cursor: louder deprecation

Check if a user explicitly set option to null and warn that they should
just disable instead.
This commit is contained in:
Austin Horstman 2025-03-12 08:53:16 -05:00
parent 74f2ed6a64
commit 1878091234
2 changed files with 16 additions and 21 deletions

View file

@ -32,11 +32,11 @@
config = {
home.pointerCursor = null;
home.stateVersion = "25.05";
home.stateVersion = "24.11";
test.asserts.warnings.expected = [''
Setting home.pointerCursor to null is deprecated.
Please update your configuration so that
Please update your configuration to explicitly set:
home.pointerCursor.enable = false;
''];