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.
13 lines
253 B
Nix
13 lines
253 B
Nix
{
|
|
qt = {
|
|
enable = true;
|
|
qt5ctSettings = {
|
|
test_section.test_option = "test";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/.config/qt5ct/qt5ct.conf"
|
|
assertPathNotExists "home-files/.config/qt6ct/qt6ct.conf"
|
|
'';
|
|
}
|