updated bookmarks

This commit is contained in:
Bryan Ramos 2024-11-05 04:34:08 -05:00
parent 253b716ff8
commit 92869f833a
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
2 changed files with 21 additions and 8 deletions

View file

@ -18,13 +18,24 @@
keyword = "pkgs";
}
{
name = "Home Manager Options";
name = "Home Manager";
bookmarks = [
{
name = "Home Manager Option Docs";
url = "https://nix-community.github.io/home-manager/options.xhtml";
tags = [ "nix" "dev" "linux" ];
keyword = "hm";
}
{
name = "Nix";
name = "Home Manager Option Search";
url = "https://home-manager-options.extranix.com";
tags = [ "nix" "dev" "linux" ];
keyword = "hm";
}
];
}
{
name = "Nix Docs";
bookmarks = [
{
name = "nix.dev";

View file

@ -3,7 +3,7 @@
with lib;
let
cfg = config.modules.user.gui.browser.firefox;
passff = {
passffHost= {
home.packages = with pkgs; [
passff-host
];
@ -35,11 +35,12 @@ let
in
{
options.modules.user.gui.browser.firefox = { enable = mkEnableOption "Enable Firefox browser"; };
config = mkIf cfg.enable (passff // {
config = mkIf cfg.enable (passffHost // {
programs.firefox = {
enable = true;
profiles = {
"default" = {
"${config.user.name}" = {
isDefault = true;
bookmarks = config.user.bookmarks;
search = {
@ -307,6 +308,7 @@ in
#darkreader
greasemonkey
clearurls
passff
];
};
};