mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-12 20:11:06 +01:00
Added qtctSettings option to qt module to make it possible to configure qt(5/6)ct declaratively.
16 lines
320 B
Nix
16 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"
|
|
'';
|
|
}
|