--wip-- [skip ci]

This commit is contained in:
Filippo Berto 2025-09-08 11:36:45 +02:00
parent eea02abfcb
commit 762085707c
136 changed files with 261 additions and 261 deletions

30
hm/modules/gtk_theme.nix Normal file
View file

@ -0,0 +1,30 @@
{ pkgs, nixosConfig, ... }:
{
gtk = {
enable = true;
font = { inherit (nixosConfig.nix-rice.rice.font.normal) name package size; };
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-dark";
};
theme = {
package = pkgs.arc-theme;
name = "Arc-Dark";
};
};
qt = {
enable = true;
platformTheme.name = "gtk";
};
home = {
pointerCursor = {
package = pkgs.qogir-icon-theme;
name = "Qogir";
# size = 64;
# x11.enable = true;
gtk.enable = true;
};
};
}