mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-04-17 09:53:55 +02:00
14 lines
228 B
Nix
14 lines
228 B
Nix
{ pkgs, ... }:
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "adw-gtk3";
|
|
package = pkgs.adw-gtk3;
|
|
};
|
|
};
|
|
|
|
programs.foot.settings.main.pad = "0x0x0x8";
|
|
|
|
xdg.configFile."gtk-4.0/gtk.css".force = true;
|
|
}
|