mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 11:19:44 +01:00
20 lines
440 B
Nix
20 lines
440 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
qt = {
|
||
|
enable = true;
|
||
|
platformTheme = "gtk3";
|
||
|
};
|
||
|
|
||
|
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'
|
||
|
'';
|
||
|
};
|
||
|
}
|