mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-03-14 16:33:25 +00:00
~
This commit is contained in:
parent
54743f562a
commit
304b2ea086
3 changed files with 50 additions and 48 deletions
nixos
|
@ -11,8 +11,8 @@
|
||||||
virtualisation.oci-containers.containers."homepage" = {
|
virtualisation.oci-containers.containers."homepage" = {
|
||||||
image = "ghcr.io/gethomepage/homepage:latest";
|
image = "ghcr.io/gethomepage/homepage:latest";
|
||||||
volumes = [
|
volumes = [
|
||||||
|
"/etc/homepage-dashboard:/app/config:rw"
|
||||||
"/home/rae/.dotfiles/assets/wallpapers:/app/public/images:rw"
|
"/home/rae/.dotfiles/assets/wallpapers:/app/public/images:rw"
|
||||||
"/home/rae/.dotfiles/configs/homepage:/app/config:rw"
|
|
||||||
"/var/run/docker.sock:/var/run/docker.sock:rw"
|
"/var/run/docker.sock:/var/run/docker.sock:rw"
|
||||||
];
|
];
|
||||||
ports = [
|
ports = [
|
||||||
|
|
|
@ -6,6 +6,6 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- 3000:3000
|
- 3000:3000
|
||||||
volumes:
|
volumes:
|
||||||
- /home/rae/.dotfiles/configs/homepage:/app/config # Make sure your local config directory exists
|
- /etc/homepage-dashboard:/app/config # Make sure your local config directory exists
|
||||||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|
||||||
- /home/rae/.dotfiles/assets/wallpapers:/app/public/images
|
- /home/rae/.dotfiles/assets/wallpapers:/app/public/images
|
||||||
|
|
|
@ -14,8 +14,10 @@
|
||||||
programs.git.enable = true;
|
programs.git.enable = true;
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
r5e.containers = {
|
r5e.containers = {
|
||||||
|
# TODO: this doesnt work (some random ENOENT shit) and it seems slightly overkill
|
||||||
|
# maybe make your own dashboard page yourself or something
|
||||||
homepage = {
|
homepage = {
|
||||||
enable = true;
|
enable = false;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
settings = {
|
settings = {
|
||||||
title = "near";
|
title = "near";
|
||||||
|
|
Loading…
Add table
Reference in a new issue