Initial commit

This commit is contained in:
2024-07-25 16:56:48 -04:00
commit b94111bc5a
12 changed files with 546 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{ config, lib, inputs, pkgs, ... }:
let
cfg = config.firefox;
ext = inputs.firefox-addons.packages.${pkgs.system};
in
{
options = {
firefox.enable = lib.mkEnableOption "enable firefox module";
};
config.programs.firefox = lib.mkIf cfg.enable {
enable = true;
profiles.default = {
bookmarks = [
{
name = "Wikipedia";
tags = ["wiki"];
url = "https://en.wikipedia.org";
}
];
extensions = [
# ext."1password-x-password-manager"
ext.ublock-origin
];
};
};
}