nix/home-manager/common/software/gui/themes/gruvbox/firefox-theme.nix
2023-09-29 08:27:32 +09:00

9 lines
No EOL
230 B
Nix

{ config, pkgs, theme, ... }: {
programs.firefox = {
# https://nur.nix-community.org/repos/rycee/
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
# Theming
gruvbox-dark-theme
];
};
}