nixos-config/home/desktop/gtk.nix

8 lines
156 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
gtk.enable = true;
2021-05-12 23:11:14 +02:00
gtk.theme.name = "Adwaita-dark";
gtk.gtk3.extraConfig = { gtk-application-prefer-dark-theme = true; };
2019-10-19 12:55:35 +02:00
}