mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-29 12:12:19 +00:00
10 lines
169 B
Nix
10 lines
169 B
Nix
|
{ pkgs, cofig, ... }: {
|
||
|
qt = {
|
||
|
enable = true;
|
||
|
platformTheme = "gtk";
|
||
|
style = {
|
||
|
name = "gtk2";
|
||
|
package = pkgs.qt6Packages.qt6gtk2;
|
||
|
};
|
||
|
};
|
||
|
}
|