From 4a845de12d9913cd62b03c92b69866e376670461 Mon Sep 17 00:00:00 2001 From: twoneis Date: Mon, 1 Jul 2024 20:57:46 +0200 Subject: [PATCH] fix theme and games --- devices/ellaca/options.nix | 2 +- modules/home/themes/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devices/ellaca/options.nix b/devices/ellaca/options.nix index edf5516..a864d8f 100644 --- a/devices/ellaca/options.nix +++ b/devices/ellaca/options.nix @@ -10,7 +10,7 @@ withVM = false; withContainers = true; - withGames = false; + withGames = true; hwmonPath = "/sys/class/hwmon/hwmon1/temp1_input"; } diff --git a/modules/home/themes/default.nix b/modules/home/themes/default.nix index 6efa84b..7099908 100644 --- a/modules/home/themes/default.nix +++ b/modules/home/themes/default.nix @@ -2,12 +2,12 @@ home.packages = with pkgs; [ gnome.adwaita-icon-theme adwaita-qt + adwaita-qt6 ]; qt = { enable = true; - platformTheme.name = "gtk3"; - style.package = pkgs.adwaita-qt6; + platformTheme.name = "adwaita"; style.name = "adwaita-dark"; };