From b839e40edeea22df3f99bee1caa8aeb08d2a20a7 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Sun, 1 Sep 2024 02:37:25 +0100 Subject: [PATCH] halve cursor size for consistency as it was massive on some apps but not others (settings elsewhere) enabled pass-secret-service in home.nix for use with protonmail-bridge --- home-manager/home.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index d27634f..71db3c7 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -18,13 +18,16 @@ # States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed home.stateVersion = "24.05"; + services.pass-secret-service.enable = true; + + # Cursor configuration that I hope to one day understand, currently has a scaling issue but thats probably my fault home.pointerCursor = let getFrom = url: hash: name: { gtk.enable = true; x11.enable = true; name = name; - size = 48; + size = 24; package = pkgs.runCommand "moveUp" {} '' mkdir -p $out/share/icons