Update default.nix

This commit is contained in:
Aaron Honeycutt 2024-11-19 17:55:43 +00:00
parent e885c6adb1
commit 2d9fb3b80b

View file

@ -1,5 +1,3 @@
{ config, pkgs, lib, ... }:
{
services.homepage-dashboard = {
enable = true;
@ -7,6 +5,24 @@
title = "Honeycutt Homelab";
background = "https://images.unsplash.com/photo-1502790671504-542ad42d5189?auto=format&fit=crop&w=2560&q=80";
};
bookmarks = [{
dev = [
{
github = [{
abbr = "GH";
href = "https://github.com/";
icon = "github-light.png";
}];
}
{
"homepage docs" = [{
abbr = "HD";
href = "https://gethomepage.dev";
icon = "homepage.png";
}];
}
];
}];
services = [
{
media = [
@ -44,6 +60,22 @@
}
];
}
];
{
games = [
{
Minecraft = {
icon = "minecraft.png";
href = "http://100.94.173.5:25565";
description = "stack some blocks";
widget = {
type = "minecraft";
url = "udp://100.94.173.5:25565";
};
};
}
];
}
];
};
}