nixos-config/modules/home-manager/ricing/default.nix
2024-07-11 22:27:14 +09:00

20 lines
366 B
Nix

{ pkgs, ... }:
{
imports = [
./stylix
./hyprland
];
# 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;
}