feat: homepage

Signed-off-by: jolheiser <git@jolheiser.com>
homepage
jolheiser 2024-09-23 16:36:52 -05:00
parent ec06b9b269
commit 3a68db79f6
No known key found for this signature in database
2 changed files with 35 additions and 0 deletions

View File

@ -11,6 +11,7 @@ in
./git-pr.nix ./git-pr.nix
./golink.nix ./golink.nix
./gotosocial.nix ./gotosocial.nix
./homepage.nix
./restic.nix ./restic.nix
./soju.nix ./soju.nix
./tandoor.nix ./tandoor.nix

View File

@ -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;
};
}
];
};
}