Files
dotfiles/home/stuff/gtk.nix
2021-05-14 08:00:37 +05:30

20 lines
335 B
Nix

{config, pkgs,...}:
{
gtk = {
enable = true;
iconTheme = {
name = "Gruvbox-Material-Dark";
package = pkgs.gruvbox-icons;
};
theme = {
name = "Equilux";
package = pkgs.equilux-theme;
};
/* gtk3 = {
bookmarks = [
"folder:///mnt/Stuff/Memes/Discord"
];
};*/
};
}