fix: restore dark mode in sway

This commit is contained in:
Jet 2026-05-03 17:15:49 -07:00
parent 1423db9ed7
commit 18f4e3e3b3
No known key found for this signature in database
3 changed files with 31 additions and 2 deletions

View file

@ -1,4 +1,9 @@
{ config, inputs, ... }:
{
config,
inputs,
pkgs,
...
}:
{
imports = [ inputs.zen-browser.homeModules.default ];
@ -19,7 +24,14 @@
gtk = {
enable = true;
gtk4.theme = config.gtk.theme;
theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
gtk3.extraConfig.gtk-application-prefer-dark-theme = 1;
gtk4 = {
theme = config.gtk.theme;
extraConfig.gtk-application-prefer-dark-theme = 1;
};
};
}