diff --git a/modules/system/homelab/dash.nix b/modules/system/homelab/dash.nix index 9ab9e48..0b4114c 100644 --- a/modules/system/homelab/dash.nix +++ b/modules/system/homelab/dash.nix @@ -190,22 +190,6 @@ in { name = "Dashboard"; show-mobile-header = true; columns = [ - { - type = "bookmarks"; - groups = [{ - links = map (e: { - same-tab = true; - title = builtins.elemAt e 0; - icon = "si:${builtins.elemAt e 1}"; - url = builtins.elemAt e 2; - }) bookmarks; - }]; - } - { - type = "to-do"; - id = "tasks"; - hide-header = true; - } { size = "small"; widgets = [ @@ -229,6 +213,22 @@ in { url = "http://localhost:8088/"; hour-format = "12h"; } + { + type = "bookmarks"; + groups = [{ + links = map (e: { + same-tab = true; + title = builtins.elemAt e 0; + icon = "si:${builtins.elemAt e 1}"; + url = builtins.elemAt e 2; + }) bookmarks; + }]; + } + { + type = "to-do"; + id = "tasks"; + hide-header = true; + } ]; } {