This commit is contained in:
iFargle 2023-09-29 08:27:32 +09:00
parent d6e11b4bf6
commit 7c34aa09e3
4 changed files with 18 additions and 3 deletions

View file

@ -1,4 +1,6 @@
{ config, pkgs, ... }: { { config, pkgs, theme, ... }: {
imports = [ ./themes/${theme}/firefox-theme.nix ];
programs.firefox = { programs.firefox = {
enable = true; enable = true;
@ -16,8 +18,6 @@
link-cleaner link-cleaner
adnauseam adnauseam
censor-tracker censor-tracker
# Theming
gruvbox-dark-theme
]; ];
search.default = "DuckDuckGo"; search.default = "DuckDuckGo";

View file

@ -0,0 +1,3 @@
{
}

View file

@ -0,0 +1,3 @@
{
}

View file

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