feat(gnome): add declarative dark theme

This commit is contained in:
2026-02-08 09:06:21 +01:00
parent 4b5e5da3ee
commit bcd30145ae

View File

@@ -1,7 +1,7 @@
{ pkgs, ... }:
{
dconf = {
settings."org/gnome/shell" = {
dconf.settings = {
"org/gnome/shell" = {
enabled-extensions = with pkgs.gnomeExtensions; [
appindicator.extensionUuid
caffeine.extensionUuid
@@ -9,5 +9,6 @@
wallpaper-slideshow.extensionUuid
];
};
"org/gnome/desktop/interface".color-scheme = "prefer-dark";
};
}