nixcfg/home/features/themes/qt.nix
2024-10-24 15:26:47 +03:00

26 lines
389 B
Nix

{ config
, lib
, pkgs
, ...
}:
with lib; let
cfg = config.features.themes.qt;
in
{
options.features.themes.qt.enable = mkEnableOption "qt theme";
config = mkIf cfg.enable {
qt = {
enable = true;
platformTheme.name = "adwaita";
style = {
name = "Adwaita-dark";
};
};
home.packages = with pkgs;
[
adwaita-qt6
];
};
}