mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
14 lines
191 B
Nix
14 lines
191 B
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
config = lib.mkIf config.fireproof.desktop.enable {
|
||
|
|
qt = {
|
||
|
|
enable = true;
|
||
|
|
platformTheme = "gnome";
|
||
|
|
style = "adwaita-dark";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|