blob: c47e53a9e8ed10b18822188f36eadda29daa07af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ lib, pkgs, ... }:
{
xdg.data.files."icons/default" = {
source = "${pkgs.capitaine-cursors}/share/icons/capitaine-cursors-white";
};
xdg.config.files."gtk-3.0/settings.ini".text = lib.generators.toINI {} {
Settings = {
gtk-cursor-theme-name = "capitaine-cursors-white";
gtk-icon-theme-name = "Colloid-Dark";
gtk-cursor-theme-size = 24;
};
};
}
|