diff --git a/modules/linux/glance.nix b/modules/linux/glance.nix index 8545bdd..2a19a41 100644 --- a/modules/linux/glance.nix +++ b/modules/linux/glance.nix @@ -16,7 +16,7 @@ size = "full"; widgets = [ { - type = "split-column"; + type = "group"; widgets = [ { type = "clock"; @@ -42,6 +42,10 @@ units = "metric"; # alternatively "imperial" hour-format = "12h"; # alternatively "24h" } + { + type = "calendar"; + first-day-of-week = "monday"; + } ]; } { @@ -53,35 +57,35 @@ links = [ { title = "Jellyfin"; - url = "http://10.0.0.32:8096"; + url = "http://${config.networking.hostName}:8096"; } { title = "Jellyseer"; - url = "http://10.0.0.32:5055"; + url = "http://${config.networking.hostName}:5055"; } { title = "Radarr"; - url = "http://10.0.0.32:7878"; + url = "http://${config.networking.hostName}:7878"; } { title = "Sonarr"; - url = "http://10.0.0.32:8989"; + url = "http://${config.networking.hostName}:8989"; } { title = "Lidarr"; - url = "http://10.0.0.32:8686"; + url = "http://${config.networking.hostName}:8686"; } { title = "Prowlarr"; - url = "http://10.0.0.32:9696"; + url = "http://${config.networking.hostName}:9696"; } { title = "Bazarr"; - url = "http://10.0.0.32:6767"; + url = "http://${config.networking.hostName}:6767"; } { title = "Deluge"; - url = "http://10.0.0.32:8112"; + url = "http://${config.networking.hostName}:8112"; } ]; } @@ -89,15 +93,6 @@ } ]; } - { - size = "small"; - widgets = [ - { - type = "calendar"; - first-day-of-week = "monday"; - } - ]; - } ]; } ];