nix/home-manager/common/software/gui/themes/gruvbox/firefox-theme.nix

9 lines
247 B
Nix
Raw Normal View History

2023-09-29 01:27:32 +02:00
{ config, pkgs, theme, ... }: {
2023-09-29 07:45:38 +02:00
programs.firefox.profiles.default = {
2023-09-29 01:27:32 +02:00
# https://nur.nix-community.org/repos/rycee/
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
# Theming
gruvbox-dark-theme
];
};
}