29 lines
506 B
Nix
29 lines
506 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
gtk-engine-murrine
|
|
];
|
|
fonts.fontconfig.enable = true;
|
|
|
|
qt = {
|
|
enable = true;
|
|
style.name = "adwaita-dark";
|
|
platformTheme.name = "adwaita";
|
|
};
|
|
|
|
gtk =
|
|
with pkgs;
|
|
with rice;
|
|
{
|
|
enable = true;
|
|
theme = with gtk-theme; {
|
|
inherit package name;
|
|
};
|
|
iconTheme = with icons; {
|
|
inherit package name;
|
|
};
|
|
font = with fonts.sans; {
|
|
inherit name size package;
|
|
};
|
|
};
|
|
}
|