nixcfg/home/features/themes/qt.nix
nomadics9 16170bdebc init
2024-10-06 19:48:10 +03:00

24 lines
361 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;
qt.platformTheme.name = "adwaita";
qt.style = {
name = "adwaita-dark";
};
home.packages = with pkgs; [
adwaita-qt6
];
};
}