17 lines
422 B
Nix
Raw Normal View History

2021-02-17 01:06:42 +03:00
{ pkgs, lib, config, ... }:
let
thm = config.lib.base16.theme;
in {
2021-02-07 02:38:11 +03:00
home-manager.users.alukard = {
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
};
2022-06-06 20:26:10 +03:00
# home.file.".icons/default" = {
2022-07-07 22:46:27 +03:00
# source = "${thm.cursorPackage}/share/icons/Bibata-Modern-TokyoNight";
2022-06-06 20:26:10 +03:00
# };
2021-02-07 02:38:11 +03:00
};
}