Link: https://github.com/nix-community/stylix/pull/1700 Reviewed-by: awwpotato <awwpotato@voidq.com>
6 lines
185 B
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;
|
|
};
|
|
}
|