more themes in hopes it works at some point

This commit is contained in:
twoneis 2024-03-14 00:16:18 +01:00
parent 387356ab05
commit 2b8a4e33e1

View file

@ -1,4 +1,8 @@
{ pkgs, ... }: { { pkgs, ... }: {
home.packages = with pkgs; [
dconf
];
qt = { qt = {
enable = true; enable = true;
platformTheme = "gtk3"; platformTheme = "gtk3";
@ -17,4 +21,13 @@
}; };
theme.name = "Adwaita Dark"; theme.name = "Adwaita Dark";
}; };
dconf = {
enable = true;
settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
};
};
} }