18 lines
272 B
Nix
18 lines
272 B
Nix
{ pkgs, nur, ... }:
|
|
|
|
{
|
|
programs.firefox = {
|
|
enable = true;
|
|
package = pkgs.librewolf;
|
|
|
|
profiles.default = {
|
|
id = 0;
|
|
extensions = with nur.repos.rycee.firefox-addons; [
|
|
bitwarden
|
|
floccus
|
|
ublock-origin
|
|
];
|
|
};
|
|
};
|
|
}
|