18 lines
399 B
Nix
Raw Normal View History

2024-02-08 23:21:10 +03:00
{ lib, config, ... }:
2021-02-17 01:06:42 +03:00
let
thm = config.lib.base16.theme;
in {
2023-03-27 15:50:40 +03:00
environment.sessionVariables = {
XCURSOR_PATH = lib.mkForce "/home/${config.mainuser}/.icons";
};
2022-12-10 22:34:39 +03:00
home-manager.users.${config.mainuser} = {
2022-06-06 20:26:10 +03:00
home.pointerCursor = {
2021-02-17 01:06:42 +03:00
package = thm.cursorPackage;
2024-06-18 04:49:58 +03:00
name = thm.cursorTheme;
2021-02-17 01:06:42 +03:00
size = thm.cursorSize;
2022-06-06 20:26:10 +03:00
gtk.enable = true;
2022-07-07 22:46:27 +03:00
x11.enable = true;
2021-02-07 02:38:11 +03:00
};
};
}