I just switch to NixOS 24.11 using flake and find that the home-manager..gtk.theme does not change the themes of all my applications. It used to works just fine previously in NixOS 24.05 and 23.11.
Here is the part I set the theme:
# ./users/chunhou/home.nix
qt = {
enable = true;
platformTheme.name = "gtk";
style.name = "Tokyonight-Storm-B";
style.package = pkgs.tokyo-night-gtk;
};
gtk = {
enable = true;
# iconTheme.package = pkgs.nordzy-icon-theme;
iconTheme.package = pkgs.papirus-icon-theme;
iconTheme.name = "Papirus-Dark";
theme.package = pkgs.tokyo-night-gtk;
theme.name = "Tokyonight-Storm-B";
};
I am on hyprland btw. You can check the full configuration on my github repo: https://github.com/ChunHou20c/nixos-config
Any kind of help is appreciated, thanks in advance