remove bookmarks from nixos management

This commit is contained in:
Tyler Starr 2025-03-08 20:12:55 -08:00
parent 6afade306e
commit 368080386a
5 changed files with 2 additions and 64 deletions

View File

@ -52,16 +52,7 @@ in {
# Setup bookmarks
"BookmarkBarEnabled" = true;
"ShowAppsShortcutInBookmarkBar" = false;
"ManagedBookmarks" = import ./bookmarks.nix;
};
};
# Host blank webpage for default new-tab
networking.firewall.allowedTCPPorts = [ 8080 ];
services.static-web-server = {
enable = true;
listen = "[::]:8080";
root = ../../../../resources/blank;
};
};
}

View File

@ -1,43 +0,0 @@
[
{ "toplevel_name" = "Bookmarks"; }
{ "name" = "Daily"; "children" = [
{ "url" = "https://lc.tstarr.us"; name = "Chisme Mattermost"; }
{ "url" = "https://rss.tstarr.us"; name = "Miniflux"; }
{ "url" = "https://cloud.tstarr.us"; name = "Nextcloud"; }
{ "url" = "https://git.tstarr.us"; name = "Gitea"; }
{ "url" = "https://media.tstarr.us/web/index.html#!/home.html"; name = "Jellyfin"; }
{ "url" = "https://home.tstarr.us"; name = "Home Assistant"; }
{ "url" = "https://www.youtube.com/feed/subscriptions"; name = "Youtube"; }
{ "url" = "https://gmail.com/"; name = "Mail"; }
{ "url" = "https://github.com/"; name = "GitHub"; }
{ "url" = "https://www.google.com/"; name = "Google"; }
{ "url" = "https://www.icloud.com/"; name = "iCloud"; }
]; }
{ "name" = "Games"; "children" = [
{ "url" = "https://www.dotabuff.com/"; name = "DOTABUFF"; }
{ "url" = "https://myrient.erista.me/"; name = "Myrient"; }
{ "url" = "https://www.protondb.com/"; name = "ProtonDB"; }
{ "url" = "https://r-roms.github.io/"; name = "Roms Megathread"; }
{ "url" = "https://vimm.net/"; name = "Vimm's Lair: Preserving the Classics"; }
]; }
{ "name" = "Homelab"; "children" = [
{ "url" = "http://localhost:8384"; name = "Syncthing"; }
{ "url" = "https://github.com/starr-dusT/dotfiles"; name = "Dotfiles"; }
{ "url" = "https://rssbridge.tstarr.us"; name = "RSSBridge"; }
]; }
{ "name" = "Nix"; "children" = [
{ "url" = "https://nixos.org/nix/manual/"; name = "nix-manual"; }
{ "url" = "https://nixos.org/nixpkgs/manual/"; name = "nixpkgs-manual"; }
{ "url" = "https://nixos.org/nixos/manual/"; name = "nixos-manual"; }
{ "url" = "https://nixos.org/nixos/options.html"; name = "nixos-options"; }
{ "url" = "https://discourse.nixos.org/"; name = "nixos-discourse"; }
{ "url" = "https://old.reddit.com/r/nixos/"; name = "nixos-reddit"; }
{ "url" = "https://nixos.wiki/"; name = "nixos-wiki"; }
]; }
{ "name" = "Work"; "children" = [
{ url = "https://webmail.apps.mil/owa"; name = "WebMail";}
{ url = "https://dod.teams.microsoft.us/"; name = "Teams";}
{ url = "https://usaf-my.dps.mil/"; name = "OneDrive";}
]; }
]

View File

@ -5,8 +5,8 @@
./base-terminal.nix
./beancount.nix
./borg.nix
./chrome
./firefox
./chrome.nix
./firefox.nix
./git.nix
./chezmoi.nix
./kitty.nix

View File

@ -22,7 +22,6 @@ in {
};
};
profiles.default = {
bookmarks = import ./bookmarks.nix;
isDefault = true;
name = "default";
settings = {

View File

@ -1,9 +0,0 @@
[
{ name = "Managed Bookmarks"; toolbar = true; bookmarks = [
{ name = "Bookmarks"; bookmarks = [
{ url = "https://webmail.apps.mil/owa"; name = "WebMail";}
{ url = "https://dod.teams.microsoft.us/"; name = "Teams";}
{ url = "https://usaf-my.dps.mil/"; name = "OneDrive";}
]; }
]; }
]