mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Declaratively manage bookmarks
This commit is contained in:
parent
1feedce1a9
commit
eb87f6becc
5 changed files with 28 additions and 16 deletions
23
src/user/configs/bookmarks/default.nix
Normal file
23
src/user/configs/bookmarks/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[
|
||||
{
|
||||
name = "Toolbar";
|
||||
toolbar = true;
|
||||
bookmarks = [
|
||||
{
|
||||
name = "NixOS";
|
||||
bookmarks = [
|
||||
{
|
||||
name = "Nixpkgs";
|
||||
tags = [ "nix" "dev" ];
|
||||
url = "https://search.nixos.org/packages";
|
||||
}
|
||||
{
|
||||
name = "Home Manager Options";
|
||||
tags = [ "nix" "dev" ];
|
||||
url = "https://nix-community.github.io/home-manager/options.xhtml";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
}
|
||||
]
|
||||
|
|
@ -24,6 +24,8 @@ userConfigs = rec {
|
|||
signByDefault = true;
|
||||
};
|
||||
};
|
||||
|
||||
bookmarks = import ./bookmarks;
|
||||
};
|
||||
|
||||
in
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue