Dmitriy Kholkin 0b483c6531 ricing
2022-07-07 22:46:27 +03:00

17 lines
422 B
Nix

{ pkgs, lib, config, ... }:
let
thm = config.lib.base16.theme;
in {
home-manager.users.alukard = {
home.pointerCursor = {
package = thm.cursorPackage;
name = "Bibata-Modern-TokyoNight";
size = thm.cursorSize;
gtk.enable = true;
x11.enable = true;
};
# home.file.".icons/default" = {
# source = "${thm.cursorPackage}/share/icons/Bibata-Modern-TokyoNight";
# };
};
}