nixfiles/home/gui/gtk.nix

14 lines
248 B
Nix
Raw Normal View History

2021-12-20 23:48:26 +00:00
{ config, pkgs, ... }: {
gtk = {
enable = true;
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
theme = {
name = "Adementary-dark";
package = pkgs.adementary-theme;
};
};
}