add firefox profile for work
install extensions depending on firefox profile closes #26
This commit is contained in:
parent
814523bd77
commit
13fcc8e0ee
2 changed files with 44 additions and 27 deletions
|
@ -1,22 +1,32 @@
|
|||
{pkgs, nurpkgs, ...}@args:
|
||||
{nurpkgs, lib, ...}@args:
|
||||
let
|
||||
rycee-addons = with nurpkgs.repos.rycee.firefox-addons; [
|
||||
ublock-origin
|
||||
clearurls
|
||||
cookie-autodelete
|
||||
istilldontcareaboutcookies
|
||||
keepassxc-browser
|
||||
redirector
|
||||
ublacklist
|
||||
umatrix
|
||||
violentmonkey
|
||||
boring-rss
|
||||
# bypass-paywalls-clean
|
||||
];
|
||||
own-addons = with import ./derivations.nix args; [
|
||||
http-version-indicator
|
||||
indicatetls
|
||||
sixindicator
|
||||
];
|
||||
rycee-addons = nurpkgs.repos.rycee.firefox-addons;
|
||||
own-addons = import ./derivations.nix args;
|
||||
in
|
||||
rycee-addons ++ own-addons
|
||||
{
|
||||
default = lib.concatLists [
|
||||
(with rycee-addons; [
|
||||
ublock-origin
|
||||
clearurls
|
||||
cookie-autodelete
|
||||
istilldontcareaboutcookies
|
||||
keepassxc-browser
|
||||
redirector
|
||||
ublacklist
|
||||
umatrix
|
||||
violentmonkey
|
||||
boring-rss
|
||||
# rycee.bypass-paywalls-clean
|
||||
])
|
||||
(with own-addons; [
|
||||
http-version-indicator
|
||||
indicatetls
|
||||
sixindicator
|
||||
])
|
||||
];
|
||||
sue = with rycee-addons; [
|
||||
ublock-origin
|
||||
istilldontcareaboutcookies
|
||||
keepassxc-browser
|
||||
];
|
||||
}
|
||||
|
|
Reference in a new issue