Kristian Krsnik
a2cd8d467f
* laptop, pc and common now live in systems * new dev shell to run dconf2nix * New dconf weather entry (currently not functional)
24 lines
429 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|