1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
nixos-config-reborn/home-manager/modules/qt.nix
2024-12-15 06:31:35 +05:00

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";
};
};
}