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
This commit is contained in:
parent
24fc8ee5b0
commit
b839e40ede
1 changed files with 4 additions and 1 deletions
|
@ -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
|
# 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";
|
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 =
|
home.pointerCursor =
|
||||||
let
|
let
|
||||||
getFrom = url: hash: name: {
|
getFrom = url: hash: name: {
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
x11.enable = true;
|
x11.enable = true;
|
||||||
name = name;
|
name = name;
|
||||||
size = 48;
|
size = 24;
|
||||||
package =
|
package =
|
||||||
pkgs.runCommand "moveUp" {} ''
|
pkgs.runCommand "moveUp" {} ''
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue