re-enabled some bookmarks

This commit is contained in:
Danilo Reyes 2025-01-25 13:02:28 -06:00
parent a91cad44c7
commit 7ea8472de1
3 changed files with 10 additions and 12 deletions

View File

@ -22,9 +22,7 @@ in
bookmarks =
builtins.readDir ./homepage/bookmarks
|> builtins.attrNames
|> builtins.filter (
file: builtins.match ".*\\.nix" file != null && !(builtins.match "^secret-.*" file != null)
)
|> builtins.filter (file: builtins.match ".*\\.nix" file != null)
|> map (file: import ./homepage/bookmarks/${file});
};
nginx.virtualHosts."${cfg.host}" = lib.mkIf cfg.enableProxy (setup.proxyReverse cfg);

View File

@ -1,9 +1,9 @@
{
# stash = {
# header = false;
# tab = "secret";
# style = "row";
# };
stash = {
header = false;
tab = "secret";
style = "row";
};
# productivity = {
# header = false;
# tab = "productivity";
@ -40,7 +40,7 @@
shopping.tab = "bookmarks";
social.tab = "bookmarks";
development.tab = "bookmarks";
# "secret art".tab = "secret";
# "secret media".tab = "secret";
# "secret social".tab = "secret";
"secret art".tab = "secret";
"secret media".tab = "secret";
"secret social".tab = "secret";
}

View File

@ -3,7 +3,7 @@ let
services = import ./service-widgets.nix { inherit lib config; };
in
[
# { "stash" = [ { inherit (services) stash; } ]; }
{ "stash" = [ { inherit (services) stash; } ]; }
# {
# productivity = [
# { inherit (services) calendar; }