infrastructure/config/users/kat/gui/gtk.nix
2021-10-03 01:02:53 +01:00

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;
};
};
}