small changes

This commit is contained in:
Jurn Wubben 2025-03-03 18:14:56 +01:00
parent 9bf493e4ba
commit 20891b3e14
3 changed files with 19 additions and 3 deletions

View file

@ -47,7 +47,7 @@
"uBlock0@raymondhill.net".install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"; # Ublock Origin
"{446900e4-71c2-419f-a6a7-df9c091e268b}".install_url = "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi"; # Bitwarden
"jid1-QoFqdK4qzUfGWQ@jetpack".install_url = "https://addons.mozilla.org/firefox/downloads/latest/dark-background-light-text/latest.xpi"; # Dark reader alternative
"{34daeb50-c2d2-4f14-886a-7160b24d66a4}".install_url = "https://addons.mozilla.org/firefox/downloads/latest/youtube-shorts-block/latest.xpi"; # Youtube short blocker
# "{34daeb50-c2d2-4f14-886a-7160b24d66a4}".install_url = "https://addons.mozilla.org/firefox/downloads/latest/youtube-shorts-block/latest.xpi"; # Youtube short blocker
"vimium-c@gdh1995.cn".install_url = "https://addons.mozilla.org/firefox/downloads/latest/vimium-c/latest.xpi"; # Extension info here.
};
};

View file

@ -2,6 +2,8 @@
home.packages = [
pkgs.gh
pkgs.ripgrep
pkgs.ear2ctl # FIXME: only when bluetooth enabled
pkgs.bluetui
];
}

View file

@ -1,6 +1,20 @@
{pkgs, ...}: {
# {
# lib,
# config,
# ...
# }: {
# options.niksos.bluetooth = lib.mkEnableOption;
#
# config = lib.mkIf config.niksos.bluetooth {
# hardware.bluetooth = {
# enable = true;
# input.General.ClassicBondedOnly = false;
# };
# };
# }
{
hardware.bluetooth = {
enable = true;
input.General.ClassicBondedOnly = false;
};
environment.systemPackages = [pkgs.bluetui];
}