diff options
author | Ben Sima <ben@bsima.me> | 2025-02-07 13:09:44 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-02-07 13:09:44 -0500 |
commit | c209eb522a55fb84e6d3102df64ec67cb3712446 (patch) | |
tree | e0dfadc1f9bb849e1766cc91f1b65b5e87614992 | |
parent | ebffda54c7d72933d73c31bf783eced1c415dbf5 (diff) |
try to enable bigger pointer cursor
-rw-r--r-- | lib/linux.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/linux.nix b/lib/linux.nix index e025452..51fa65d 100644 --- a/lib/linux.nix +++ b/lib/linux.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, ... }: +{ pkgs, lib, config, ... }: let inherit (import ./const.nix) fontSize homedir gpgid; @@ -24,6 +24,7 @@ in pointerCursor = { package = pkgs.phinger-cursors; name = "phinger-cursors"; + x11.enable = true; }; keyboard.options = [ "caps:ctrl_modifier" ]; sessionVariables = { |