2023-06-16 08:48:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-06-16 07:14:07 +01:00
|
|
|
programs.firefox = {
|
|
|
|
enable = true;
|
|
|
|
profiles.evie = {
|
2023-06-16 11:38:30 +01:00
|
|
|
settings = {
|
|
|
|
"app.shield.optoutstudies.enabled" = false;
|
|
|
|
"browser.bookmarks.addedImportButton" = true;
|
|
|
|
"browser.bookmarks.showMobileBookmarks" = true;
|
|
|
|
"browser.contentblocking.category" = "strict";
|
|
|
|
"browser.startup.homepage" = "https://nixos.org";
|
|
|
|
"browser.search.region" = "GB";
|
|
|
|
"browser.search.isUS" = false;
|
|
|
|
"browser.warnOnQuitShortcut" = false;
|
|
|
|
"distribution.searchplugins.defaultLocale" = "en-GB";
|
|
|
|
"doh-rollout.home-region" = "GB";
|
2023-06-16 14:05:17 +01:00
|
|
|
"extensions.activeThemeID" = "firefox-alpenglow@mozilla.org";
|
2023-06-16 11:38:30 +01:00
|
|
|
"extensions.formautofill.creditCards.enabled" = false;
|
|
|
|
"general.useragent.locale" = "en-GB";
|
|
|
|
"intl.locale.requested" = "en-GB,en-US";
|
2023-06-19 17:18:59 +01:00
|
|
|
"intl.regional_prefs.use_os_locales" = false;
|
2023-06-16 11:38:30 +01:00
|
|
|
"media.eme.enabled" = true;
|
|
|
|
"signon.management.page.breach-alerts.enabled" = false;
|
|
|
|
"signon.rememberSignons" = false;
|
|
|
|
"browser.newtabpage.pinned" = [
|
2023-06-19 16:59:37 +01:00
|
|
|
{
|
|
|
|
title = "NixOS Wiki";
|
|
|
|
url = "https://nixos.wiki";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
title = "Arch Wiki";
|
|
|
|
url = "https:wiki.archlinux.org";
|
|
|
|
}
|
2023-06-16 11:38:30 +01:00
|
|
|
];
|
|
|
|
};
|
2023-06-16 08:48:18 +01:00
|
|
|
search = {
|
|
|
|
default = "DuckDuckGo";
|
|
|
|
force = true;
|
|
|
|
order = ["DuckDuckGo"];
|
|
|
|
engines = {
|
2023-06-16 14:05:17 +01:00
|
|
|
"MyNixOS" = {
|
|
|
|
urls = [{template = "https://mynixos.com/search?q={searchTerms}";}];
|
2023-06-16 08:48:18 +01:00
|
|
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
|
|
|
definedAliases = ["@np"];
|
|
|
|
};
|
|
|
|
"NixOS Wiki" = {
|
|
|
|
urls = [{template = "https://nixos.wiki/index.php?search={searchTerms}";}];
|
2023-06-19 17:18:59 +01:00
|
|
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
2023-06-16 08:48:18 +01:00
|
|
|
definedAliases = ["@nw"];
|
|
|
|
};
|
2023-06-19 16:59:37 +01:00
|
|
|
"Arch Wiki" = {
|
|
|
|
urls = [{template = "https://wiki.archlinux.org/index.php?search={searchTerms}";}];
|
|
|
|
definedAliases = ["@aw"];
|
|
|
|
};
|
2023-06-19 17:18:59 +01:00
|
|
|
"GitHub" = {
|
|
|
|
urls = [{template = "https://github.com/search?q={searchTerms}";}];
|
|
|
|
definedAliases = ["@gh"];
|
|
|
|
};
|
2023-06-16 08:48:18 +01:00
|
|
|
};
|
|
|
|
};
|
2023-06-19 17:18:59 +01:00
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "toolbar";
|
|
|
|
toolbar = true;
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "Wikipedia";
|
|
|
|
tags = ["wiki"];
|
|
|
|
keyword = "wiki";
|
|
|
|
url = "https://en.wikipedia.org";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Nix sites";
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "NixOS Wiki";
|
|
|
|
tags = ["wiki" "nix"];
|
|
|
|
url = "https://nixos.wiki/";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Arch Wiki";
|
|
|
|
tags = ["wiki" "arch"];
|
|
|
|
url = "https://wiki.archlinux.org/";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Source control";
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "Gitea";
|
|
|
|
tags = ["git" "source" "xenia"];
|
|
|
|
url = "https://git.xenia.me.uk";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "GitHub";
|
|
|
|
tags = ["git" "source"];
|
|
|
|
url = "https://github.com";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "GitLab";
|
|
|
|
tags = ["git" "source"];
|
|
|
|
url = "https://gitlab.com";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "UKAEA GitLab";
|
|
|
|
tags = ["git" "source" "work" "UKAEA"];
|
|
|
|
url = "https://git.ccfe.ac.uk";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Work";
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "Nucleus";
|
|
|
|
tags = ["work" "UKAEA"];
|
|
|
|
url = "https://nucleus.ukaea.uk";
|
|
|
|
}
|
2023-06-19 17:29:04 +01:00
|
|
|
{
|
|
|
|
name = "U4BW";
|
|
|
|
tags = ["work" "UKAEA" "admin"];
|
|
|
|
url = "https://ubw.unit4cloud.com/uk_aea_prod_web";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Outlook";
|
|
|
|
tags = ["work" "UKAEA" "email"];
|
|
|
|
url = "https://outlook.office.com";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Microsoft Teams";
|
|
|
|
tags = ["work" "UKAEA" "communication"];
|
|
|
|
url = "https://teams.microsoft.com";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "SharePoint";
|
|
|
|
tags = ["work" "UKAEA" "cloud" "storage"];
|
|
|
|
url = "https://ukaeauk-my.sharepoint.com/personal/evie_litherland-smith_ukaea_uk/_layouts/15/onedrive.aspx?view=0";
|
|
|
|
}
|
2023-06-19 17:18:59 +01:00
|
|
|
{
|
|
|
|
name = "Physics Summary";
|
|
|
|
tags = ["work" "UKAEA" "JET" "operations"];
|
|
|
|
url = "https://users.euro-fusion.org/pages/physics-summary/LatestSession.php";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "JET homepage";
|
|
|
|
tags = ["work" "UKAEA" "JET"];
|
|
|
|
url = "w3.jet.uk";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2023-06-19 17:29:04 +01:00
|
|
|
{
|
|
|
|
name = "Proton Mail";
|
|
|
|
tags = ["email"];
|
|
|
|
url = "https://mail.proton.me";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Nextcloud";
|
|
|
|
tags = ["cloud" "storage" "federation" "xenia"];
|
|
|
|
url = "https://cloud.xenia.me.uk";
|
|
|
|
}
|
2023-06-19 17:18:59 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
2023-06-16 07:14:07 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|