From dfac42ff0d2e77908b3c0752e52dbaeed5bb5150 Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 29 Jul 2025 02:25:01 +0300 Subject: [PATCH] add new glance bookmarks --- modules/services/glance.nix | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/modules/services/glance.nix b/modules/services/glance.nix index c59cb3a..c32f3cc 100644 --- a/modules/services/glance.nix +++ b/modules/services/glance.nix @@ -30,8 +30,37 @@ widgets = [ { type = "calendar"; } { - type = "repository"; - repository = "NixOS/nixpkgs"; + type = "bookmarks"; + groups = [ + { + title = "My Profiles"; + same-tab = true; + color = "200 50 50"; + links = [ + { + title = "GitHub"; + url = "https://github.com/osbm"; + } + { + title = "Gitlab"; + url = "https://gitlab.com/osbm"; + } + { + title = "Crates.io"; + url = "https://crates.io/users/osbm"; + } + ]; + } + { + title = "Documents"; + links = [ + { + title = "Nixos Search"; + url = "https://search.nixos.org"; + } + ]; + } + ]; } ]; }