home-manager/systems/common/firefox.nix
Kristian Krsnik a2cd8d467f
restructured
* laptop, pc and common now live in systems
* new dev shell to run dconf2nix
* New dconf weather entry (currently not functional)
2023-09-25 20:02:11 +02:00

24 lines
429 B
Nix

{config, ...}: {
programs.firefox = {
enable = true;
profiles.kristian = {
isDefault = true;
search.default = "DuckDuckGo";
search.force = true;
extensions = with config.nur.repos.rycee.firefox-addons; [
ublock-origin
umatrix
sidebery
sponsorblock
dearrow
];
settings = {
"extensions.pocket.enabled" = false;
};
};
};
}