2021-01-21 22:13:53 +04:00
|
|
|
{ pkgs, lib, ... }: {
|
|
|
|
|
|
|
|
environment.sessionVariables = {
|
|
|
|
XCURSOR_PATH = lib.mkForce "/home/balsoft/.icons";
|
|
|
|
};
|
|
|
|
|
|
|
|
home-manager.users.balsoft = {
|
|
|
|
|
|
|
|
xsession.pointerCursor = {
|
|
|
|
package = pkgs.breeze-qt5;
|
|
|
|
name = "Breeze";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.file.".icons/default".source =
|
|
|
|
"${pkgs.breeze-qt5}/share/icons/breeze_cursors";
|
2021-05-10 04:04:18 +04:00
|
|
|
|
|
|
|
|
|
|
|
home.file.".icons/Breeze".source =
|
|
|
|
"${pkgs.breeze-qt5}/share/icons/breeze_cursors";
|
2021-01-21 22:13:53 +04:00
|
|
|
};
|
|
|
|
}
|