Highly opinionated dashboard for your home server. Inspired by all the existing solutions, but made to be quicker to manage.
- YAML/JSON Configuration
- Integrates with Dashboard Icons
- Search w/ Keyboard Shortcuts
- Shows basic system stats
- Groupings
- Tabs / Multiple Pages
title: Hello World
subtitle: This is a subtitle
columns: 3
services:
# used for shorthands
url_template: https://$name$.example.com
items:
# this is a shorthand for
# - service: sonarr
- sonarr
- name: radarr
icon: di:radarr
url: https://radarr.example.com
target: _blank
JSON is also supported.
Add the repo to your flake inputs and import the module
quick-home.url = "github:tylergets/quick-home";import the module
quick-home.nixosModules.quick-homethen enable the service
services.quickHome = {
enable = true;
port = 8281;
host = "0.0.0.0";
settings = {}; # See Configuration above
};docker run --rm -v /local/path/to/folder:/etc/quickHome -p 3000:3000 ghcr.io/tylergets/quick-homeservices:
quick-home:
image: ghcr.io/tylergets/quick-home
volumes:
- /local/path/to/folder:/etc/quickHome
ports:
- 3000:3000