nixos-config/modules/home-manager/ricing/default.nix
2024-07-12 12:23:21 +09:00

19 lines
347 B
Nix

{ pkgs, ... }:
{
imports = [
./stylix
];
# GTK theming
gtk.enable = true;
gtk.iconTheme.package = pkgs.gruvbox-plus-icons;
gtk.iconTheme.name = "Gruvbox-Plus-Dark";
# Qt theming
qt.enable = true;
qt.platformTheme = "gtk";
qt.style.name = "adwaita-dark";
qt.style.package = pkgs.adwaita-qt;
}