18 lines
416 B
Nix
Raw Normal View History

2021-02-17 01:06:42 +03:00
{ pkgs, lib, config, ... }:
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;
2022-07-07 22:46:27 +03:00
name = "Bibata-Modern-TokyoNight";
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
};
};
}