some stuff ig

This commit is contained in:
xunuwu 2024-08-22 17:07:44 +02:00
parent 11536e636f
commit 82bed310d8
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
12 changed files with 144 additions and 68 deletions

View file

@ -27,7 +27,7 @@
];
};
profiles.xun = {
extensions = with inputs.firefox-addons.packages.${pkgs.system}; [
extensions = with config.nur.repos.rycee.firefox-addons; [
ublock-origin
darkreader
sponsorblock
@ -37,6 +37,14 @@
istilldontcareaboutcookies
sidebery
(lib.mkIf (builtins.elem pkgs.keepassxc config.home.packages) keepassxc-browser)
(buildFirefoxXpiAddon rec {
pname = "roseal";
version = "1.3.44";
addonId = "{f4f4223a-ff30-4961-b9c0-6a71b7a32aaf}";
url = "https://addons.mozilla.org/firefox/downloads/file/4323142/roseal-${version}.xpi";
sha256 = "sha256-Qvd/EUMsSqYCvwUuxjM/ejnn7/TRuhyD82/Azu0dAfE=";
meta = {};
})
];
bookmarks = {};
search = {

View file

@ -0,0 +1,10 @@
{
self,
pkgs,
...
}: {
# i have sober installed imperatively through flatpak
home.packages = [
self.packages.${pkgs.system}.sobercookie
];
}