test
This commit is contained in:
parent
d6e11b4bf6
commit
7c34aa09e3
4 changed files with 18 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
|||
{ config, pkgs, ... }: {
|
||||
{ config, pkgs, theme, ... }: {
|
||||
|
||||
imports = [ ./themes/${theme}/firefox-theme.nix ];
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
|
||||
|
@ -16,8 +18,6 @@
|
|||
link-cleaner
|
||||
adnauseam
|
||||
censor-tracker
|
||||
# Theming
|
||||
gruvbox-dark-theme
|
||||
];
|
||||
|
||||
search.default = "DuckDuckGo";
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
|
||||
}
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue