Added qtctSettings option to qt module to make it possible to configure qt(5/6)ct declaratively.
17 lines
320 B
Nix
17 lines
320 B
Nix
{
|
|
qt = {
|
|
enable = true;
|
|
qt5ctSettings = {
|
|
test_section.test_option = "test";
|
|
};
|
|
qt6ctSettings = {
|
|
test_section.test_option = "test";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/.config/qt5ct/qt5ct.conf"
|
|
assertFileExists "home-files/.config/qt6ct/qt6ct.conf"
|
|
'';
|
|
}
|