Better organization :')

This commit is contained in:
2026-01-22 14:02:13 -07:00
parent b88b249203
commit cf40ef6794
9 changed files with 124 additions and 81 deletions

17
modules/home/firefox.nix Normal file
View File

@@ -0,0 +1,17 @@
{ pkgs, nur, ... }:
{
programs.firefox = {
enable = true;
package = pkgs.librewolf;
profiles.default = {
id = 0;
extensions = with nur.repos.rycee.firefox-addons; [
bitwarden
floccus
ublock-origin
];
};
};
}