Skip to content

Commit

Permalink
Configure Firefox's new tab page pins
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Nov 14, 2023
1 parent 54746d0 commit 562af67
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions home/programs/firefox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,33 @@ in
};
force = true;
};
settings = {
"browser.search.suggest.enabled" = false;
"browser.search.region" = "CH";
"browser.startup.homepage" = cfg.homepage;
"browser.newtabpage.pinned" = [
{
title = "Blog";
url = "https://blog.harke.ch";
}
{
title = "Cloud";
url = "https://cloud.harke.ch";
}
{
title = "Code";
url = "https://code.harke.ch";
}
{
title = "News";
url = "https://news.harke.ch";
}
{
title = "ProtonMail";
url = "https://mail.proton.me";
}
];
};
};
};
};
Expand Down

0 comments on commit 562af67

Please sign in to comment.