nixos/modules/desktop/qt.nix

14 lines
191 B
Nix
Raw Permalink Normal View History

2025-12-12 04:02:55 +01:00
{
config,
lib,
...
}: {
config = lib.mkIf config.fireproof.desktop.enable {
qt = {
enable = true;
platformTheme = "gnome";
style = "adwaita-dark";
};
};
}