my terrible dotfiles
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

firefox extension stuff

+10 -8
+3 -6
home/desktop/firefox.nix
··· 34 34 "sidebar.revamp" = true; 35 35 "toolkit.legacyUserProfileCustomizations.stylesheets" = true; 36 36 }; 37 - Extensions.Locked = [ 38 - "uBlock0@raymondhill.net" 39 - "{3c078156-979c-498b-8990-85f7987dd929}" 40 - "@testpilot-containers" 41 - "{446900e4-71c2-419f-a6a7-df9c091e268b}" 42 - ]; 43 37 ExtensionSettings = { 44 38 "uBlock0@raymondhill.net" = { 45 39 install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"; 40 + installation_mode = "force_installed"; 46 41 default_area = "navbar"; 47 42 private_browsing = true; 48 43 }; 49 44 "{3c078156-979c-498b-8990-85f7987dd929}" = { 50 45 install_url = "https://addons.mozilla.org/firefox/downloads/latest/sidebery/latest.xpi"; 46 + installation_mode = "force_installed"; 51 47 default_area = "navbar"; 52 48 private_browsing = true; 53 49 }; 54 50 "@testpilot-containers" = { 55 51 install_url = "https://addons.mozilla.org/firefox/downloads/latest/multi-account-containers/latest.xpi"; 52 + installation_mode = "force_installed"; 56 53 private_browsing = false; 57 54 }; 58 55 };
+7 -2
home/email.nix
··· 1 - { pkgs, lib, config, ... }: 1 + { 2 + pkgs, 3 + lib, 4 + config, 5 + ... 6 + }: 2 7 { 3 8 accounts.email.maildirBasePath = "mail"; 4 9 accounts.email.accounts = { ··· 80 85 }; 81 86 }; 82 87 thunderbird = { 83 - package = pkgs.thunderbird-esr; 88 + package = pkgs.thunderbird-esr; 84 89 enable = true; 85 90 profiles.default = { 86 91 isDefault = true;