mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
18 lines
363 B
Nix
18 lines
363 B
Nix
{ lib, pkgs, ... }: {
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
qgnomeplatform-qt6
|
|
];
|
|
|
|
# Required to coerce dark theme that works with Yaru
|
|
# TODO: Set this in the user-session
|
|
variables = lib.mkForce {
|
|
QT_QPA_PLATFORMTHEME = "gnome";
|
|
QT_STYLE_OVERRIDE = "Adwaita-Dark";
|
|
};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
};
|
|
}
|