mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
15 lines
246 B
Nix
15 lines
246 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
gtk = {
|
|
enable = false;
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.papirus-icon-theme;
|
|
};
|
|
theme = {
|
|
name = "Adapta";
|
|
package = pkgs.adapta-gtk-theme;
|
|
};
|
|
};
|
|
}
|