mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-30 08:57:23 +02:00
12 lines
180 B
Nix
12 lines
180 B
Nix
{ pkgs, ... }:
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "adw-gtk3";
|
|
package = pkgs.adw-gtk3;
|
|
};
|
|
};
|
|
|
|
xdg.configFile."gtk-4.0/gtk.css".force = true;
|
|
}
|