diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-10T23·05+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-10T23·07+0000 |
commit | 73db632090c171b3d5d727a2c2ae6fe580bf8b64 (patch) | |
tree | cda1c648fe939ccdc47efa2bb7278ca98fb8f8e9 /configs | |
parent | d784c1d15754e32e2155f71a5cb3adec325d1e90 (diff) |
Support unclutter with home-manager
I removed the code that initializes unclutter from .profile - preferring to start it with home-manager.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/.config/nixpkgs/home.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/.config/nixpkgs/home.nix b/configs/.config/nixpkgs/home.nix index cbf517bc2ae8..1a4d53bd4240 100644 --- a/configs/.config/nixpkgs/home.nix +++ b/configs/.config/nixpkgs/home.nix @@ -139,6 +139,9 @@ ''; }; + # Hide the cursor during X sessions after 1 second. + services.unclutter.enable = true; + # Support mouseless workflows. services.keynav.enable = true; |