Various firefox fixes

This commit is contained in:
bad 2021-10-08 18:35:13 +02:00
parent 4e3a496acf
commit 57cd41e8f0

View file

@ -4,11 +4,21 @@
home.sessionVariables = { home.sessionVariables = {
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share"; XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
# NIX_BUILD_SHELL = "zsh"; EDITOR = "${pkgs.neovim}/bin/nvim";
MOZ_ENABLE_WAYLAND = 1;
};
gtk = {
enable = true;
theme = {
name = "Arc-Dark";
package = pkgs.arc-theme;
};
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = true;
};
}; };
gtk.enable = true;
gtk.theme.name = "arc-dark";
gtk.theme.package = pkgs.arc-theme;
programs.go = { programs.go = {
enable = true; enable = true;
goPath = ".local/go"; goPath = ".local/go";