blob: 0cfd408f866cf00fda7a71ed6c45dab98ab58563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{pkgs, ...}: {
programs.firefox = {
enable = true;
profiles.arkenfox = {
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
bitwarden
floccus
private-relay
ublock-origin
];
isDefault = true;
};
};
}
|