nix-dotfiles/home/config/gtk.nix

32 lines
648 B
Nix
Raw Permalink Normal View History

{ pkgs, config, machineVars, ... }:
{
gtk = pkgs.lib.mkIf (!machineVars.headless) {
enable = true;
font = {
name = "Droid Sans";
};
iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus";
};
theme = {
package = pkgs.vimix-gtk-themes;
name = "VimixDark";
};
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
gtk3.bookmarks = map (s: "file://${config.home.homeDirectory}/${s}") [
"Downloads"
2024-08-12 17:39:59 +02:00
"pictures"
"documents"
"music"
".config"
".local/share"
# "Dropbox"
"git"
"git/pvv"
"nix"
];
};
}