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

9 lines
230 B
Nix
Raw Normal View History

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