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/nixos/modules/qt.nix
andrey_varnavskiy 9b667bab5a add qt configuration
2024-12-15 06:26:49 +05:00

18 lines
370 B
Nix

{ pkgs, ... }: {
environment.variables.QT_QPA_PLATFORMTHEME = "qt5ct";
environment.systemPackages = with pkgs;
[
libsForQt5.qtstyleplugin-kvantum
libsForQt5.qt5ct
];
nixpkgs.config.qt5 = {
enable = true;
platformTheme = "qt5ct";
style = {
package = pkgs.utterly-nord-plasma;
name = "Utterly Nord Plasma";
};
};
}