Home

dotnix @3a68db79f60a27b091cf72120f0e7e39fa854192 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / machines / dragonwell / homepage.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
        };
      }
    ];
  };
}