1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-12-26 11:49:47 +01:00
home-manager/tests/modules/misc/qt/qt-platform-theme-gtk3.nix

16 lines
374 B
Nix
Raw Normal View History

2023-11-20 21:33:29 +01:00
{
2024-12-04 10:24:09 +01:00
qt = {
enable = true;
platformTheme.name = "gtk3";
2023-11-20 21:33:29 +01:00
};
2024-12-04 10:24:09 +01:00
nmt.script = ''
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
'QT_QPA_PLATFORMTHEME="gtk3"'
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
'QT_PLUGIN_PATH'
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
'QML2_IMPORT_PATH'
'';
2023-11-20 21:33:29 +01:00
}