mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
12 lines
259 B
Nix
12 lines
259 B
Nix
{
|
|
config = {
|
|
qt.enable = true;
|
|
|
|
nmt.script = ''
|
|
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'
|
|
'';
|
|
};
|
|
}
|