refactor: desktop legacy module

This commit is contained in:
Nickolaj Jepsen 2025-12-12 04:02:55 +01:00
parent 5f56c011ab
commit d463f4d1af
31 changed files with 630 additions and 577 deletions

13
modules/desktop/qt.nix Normal file
View file

@ -0,0 +1,13 @@
{
config,
lib,
...
}: {
config = lib.mkIf config.fireproof.desktop.enable {
qt = {
enable = true;
platformTheme = "gnome";
style = "adwaita-dark";
};
};
}