mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
15 lines
254 B
Nix
15 lines
254 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.papirus-icon-theme;
|
|
};
|
|
theme = {
|
|
name = "Adementary-dark";
|
|
package = pkgs.adementary-theme;
|
|
};
|
|
};
|
|
}
|