mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
15 lines
241 B
Nix
15 lines
241 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
papirus-icon-theme
|
|
pcmanfm-qt
|
|
];
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "gtk";
|
|
style = {
|
|
package = pkgs.adwaita-qt;
|
|
name = "adwaita-dark";
|
|
};
|
|
};
|
|
}
|