13 lines
214 B
Nix
13 lines
214 B
Nix
|
{pkgs, ...}: {
|
||
|
programs.firefox = {
|
||
|
enable = true;
|
||
|
profiles = {
|
||
|
"aria" = {
|
||
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||
|
ublock-origin
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|