feat: refactor home-manager configuration for multi-host support

This commit is contained in:
lightly-toasted 2025-08-31 22:16:33 +09:00
parent f20c875a48
commit 6d1fd47bea
47 changed files with 51 additions and 14 deletions

View file

@ -0,0 +1,45 @@
{
programs.firefox = {
enable = true;
policies = {
DisableTelemetry = true;
DisableFirefoxStudies = true;
DisablePocket = true;
DisableFirefoxAccounts = true;
OfferToSaveLogins = false;
PasswordManagerEnabled = false;
ExtensionSettings = {
# KeePassXC-Browser
"keepassxc-browser@keepassxc.org" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/keepassxc-browser/latest.xpi";
installation_mode = "normal_installed";
};
# Vimium C
"vimium-c@gdh1995.cn" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/vimium-c/latest.xpi";
installation_mode = "normal_installed";
};
# uBlock Origin
"uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "normal_installed";
};
# RoGold
"{048bba8c-c62d-4967-963d-d663cae75d3f}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/rogold/latest.xpi";
installation_mode = "normal_installed";
};
# RoSeal
"{f4f4223a-ff30-4961-b9c0-6a71b7a32aaf}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/roseal/latest.xpi";
installation_mode = "normal_installed";
};
# Raindrop.io
"jid0-adyhmvsP91nUO8pRv0Mn2VKeB84@jetpack" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/raindropio/latest.xpi";
installation_mode = "normal_installed";
};
};
};
};
}