mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
updated bookmarks
This commit is contained in:
parent
253b716ff8
commit
92869f833a
2 changed files with 21 additions and 8 deletions
|
|
@ -18,13 +18,24 @@
|
||||||
keyword = "pkgs";
|
keyword = "pkgs";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "Home Manager Options";
|
name = "Home Manager";
|
||||||
url = "https://nix-community.github.io/home-manager/options.xhtml";
|
bookmarks = [
|
||||||
tags = [ "nix" "dev" "linux" ];
|
{
|
||||||
keyword = "hm";
|
name = "Home Manager Option Docs";
|
||||||
|
url = "https://nix-community.github.io/home-manager/options.xhtml";
|
||||||
|
tags = [ "nix" "dev" "linux" ];
|
||||||
|
keyword = "hm";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "Home Manager Option Search";
|
||||||
|
url = "https://home-manager-options.extranix.com";
|
||||||
|
tags = [ "nix" "dev" "linux" ];
|
||||||
|
keyword = "hm";
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "Nix";
|
name = "Nix Docs";
|
||||||
bookmarks = [
|
bookmarks = [
|
||||||
{
|
{
|
||||||
name = "nix.dev";
|
name = "nix.dev";
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.modules.user.gui.browser.firefox;
|
cfg = config.modules.user.gui.browser.firefox;
|
||||||
passff = {
|
passffHost= {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
passff-host
|
passff-host
|
||||||
];
|
];
|
||||||
|
|
@ -35,11 +35,12 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.modules.user.gui.browser.firefox = { enable = mkEnableOption "Enable Firefox browser"; };
|
options.modules.user.gui.browser.firefox = { enable = mkEnableOption "Enable Firefox browser"; };
|
||||||
config = mkIf cfg.enable (passff // {
|
config = mkIf cfg.enable (passffHost // {
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profiles = {
|
profiles = {
|
||||||
"default" = {
|
"${config.user.name}" = {
|
||||||
|
isDefault = true;
|
||||||
bookmarks = config.user.bookmarks;
|
bookmarks = config.user.bookmarks;
|
||||||
|
|
||||||
search = {
|
search = {
|
||||||
|
|
@ -307,6 +308,7 @@ in
|
||||||
#darkreader
|
#darkreader
|
||||||
greasemonkey
|
greasemonkey
|
||||||
clearurls
|
clearurls
|
||||||
|
passff
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue