fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
17 lines
252 B
Nix
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"; };
|
|
};
|
|
}
|