mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 19:00:19 +01:00
10 lines
130 B
Nix
10 lines
130 B
Nix
{ pkgs, ... }:
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "adw-gtk3";
|
|
package = pkgs.adw-gtk3;
|
|
};
|
|
};
|
|
}
|