11.stylix/stylix/nixos/cursor.nix

6 lines
185 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf (config.stylix.enable && config.stylix.cursor != null) {
environment.variables.XCURSOR_SIZE = toString config.stylix.cursor.size;
};
}