NixOS-Config/modules/system/programs/qt/default.nix

9 lines
126 B
Nix
Raw Normal View History

{ config, ... }:
2024-10-09 03:36:08 -04:00
{
qt = {
enable = config.system.desktop.enable;
style = "gtk2";
platformTheme = "gtk2";
};
}