nix/users/gandalf/modules/gui/gtk.nix

13 lines
203 B
Nix

{ ... }: {
gtk = {
enable = true;
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
};
}