nixos-config/home-manager/stvnliu/gtk.nix
Zhongheng Liu 7d88765f5d
feat(home-manager): service defs and fmt
fmt: reformatted using nixpkgs-fmt prettifier
mpd: created configuration
hypr: add window rules
commons: add usingMusicPlayerDaemon variable
2025-01-08 14:12:29 +02:00

17 lines
252 B
Nix

{ pkgs
, config
, ...
}: {
gtk = {
enable = true;
iconTheme = {
package = pkgs.adwaita-icon-theme;
name = "Adwaita";
};
};
qt = {
enable = true;
platformTheme.name = "gtk";
style = { name = "Fusion"; };
};
}