mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
15 lines
245 B
Nix
15 lines
245 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
iconTheme = {
|
|
name = "Numix-Square";
|
|
package = pkgs.numix-icon-theme-square;
|
|
};
|
|
theme = {
|
|
name = "Arc-Dark";
|
|
package = pkgs.arc-theme;
|
|
};
|
|
};
|
|
}
|