From 73db632090c171b3d5d727a2c2ae6fe580bf8b64 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 10 Mar 2020 23:05:18 +0000 Subject: [PATCH] Support unclutter with home-manager I removed the code that initializes unclutter from .profile - preferring to start it with home-manager. --- configs/.config/nixpkgs/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/.config/nixpkgs/home.nix b/configs/.config/nixpkgs/home.nix index cbf517bc2..1a4d53bd4 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;