ooknet/home/modules/appearance/qt.nix

16 lines
193 B
Nix

{ config, lib, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.qt;
in
{
config = mkIf cfg.enable {
qt = {
enable = true;
platformTheme.name = "gtk";
};
};
}