diff --git a/machines/dragonwell/default.nix b/machines/dragonwell/default.nix index bde6f22..4ef5c10 100644 --- a/machines/dragonwell/default.nix +++ b/machines/dragonwell/default.nix @@ -11,6 +11,7 @@ in ./git-pr.nix ./golink.nix ./gotosocial.nix + ./homepage.nix ./restic.nix ./soju.nix ./tandoor.nix diff --git a/machines/dragonwell/homepage.nix b/machines/dragonwell/homepage.nix new file mode 100644 index 0000000..82da1cf --- /dev/null +++ b/machines/dragonwell/homepage.nix @@ -0,0 +1,34 @@ +{ + services.homepage-dashboard = { + enable = true; + listenPort = 4663; + settings = { + title = "jolheiser"; + }; + bookmarks = [ ]; + services = [ ]; + widgets = [ + { + search = { + provider = "duckduckgo"; + target = "_blank"; + }; + } + { + datetime = { + text_size = "xl"; + }; + } + { + openmeteo = { + label = "Bismarck"; + latitude = 46.80833; + longitude = -100.78374; + timezone = "America/Chicago"; + units = "imperial"; + cache = 5; + }; + } + ]; + }; +}