chore: move qt theme to nixpkgs

This commit is contained in:
Nydragon 2024-09-21 20:36:26 +02:00
parent 54a8b96377
commit da918ae326
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 8 additions and 5 deletions

View file

@ -8,11 +8,6 @@ let
inherit (lib.my) validatePath; inherit (lib.my) validatePath;
in in
{ {
qt = {
enable = true;
platformTheme.name = "gtk";
};
dconf = { dconf = {
enable = true; enable = true;
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark"; settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";

View file

@ -20,5 +20,6 @@
./system/audio.nix ./system/audio.nix
./secrets.nix ./secrets.nix
./portals.nix ./portals.nix
./themes
]; ];
} }

View file

@ -0,0 +1,7 @@
{ ... }:
{
qt = {
enable = true;
platformTheme = "gtk2";
};
}