mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 08:46:25 +00:00
19 lines
363 B
Nix
19 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;
|
||
|
};
|
||
|
}
|