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